|
WindowHelperEnumWindowsProc Delegate |
An application-defined callback function used with the or
EnumDesktopWindows function. It receives top-level window handles. The WNDENUMPROC type
defines a pointer to this callback function. EnumWindowsProc is a placeholder for the
application-defined function name.
EnumWindowsProc callback function Namespace: Xcalibur.NativeMethods.V2.WindowsAssembly: Xcalibur.NativeMethods.V2 (in Xcalibur.NativeMethods.V2.dll) Version: 1.0.1.0
Syntax public delegate bool EnumWindowsProc(
IntPtr windowHandle,
IntPtr lParam
)
Public Delegate Function EnumWindowsProc (
windowHandle As IntPtr,
lParam As IntPtr
) As Boolean
public delegate bool EnumWindowsProc(
IntPtr windowHandle,
IntPtr lParam
)
type EnumWindowsProc =
delegate of
windowHandle : IntPtr *
lParam : IntPtr -> bool
Parameters
- windowHandle IntPtr
- A handle to a top-level window.
- lParam IntPtr
- The application-defined value given in EnumWindows or
EnumDesktopWindows.
Return Value
Booleano continue enumeration, the callback function must return TRUE; to stop
enumeration, it must return FALSE.
See Also