Click or drag to resize
Xcalibur Systems LLC Logo

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.Windows
Assembly: Xcalibur.NativeMethods.V2 (in Xcalibur.NativeMethods.V2.dll) Version: 1.0.1.0
Syntax
public delegate bool EnumWindowsProc(
	IntPtr windowHandle,
	IntPtr lParam
)

Parameters

windowHandle  IntPtr
A handle to a top-level window.
lParam  IntPtr
The application-defined value given in EnumWindows or EnumDesktopWindows.

Return Value

Boolean
o continue enumeration, the callback function must return TRUE; to stop enumeration, it must return FALSE.
See Also