DelegatesEnumThreadWindowsProc Delegate

An application-defined callback function used with the EnumThreadWindows(UInt32, DelegatesEnumThreadWindowsProc, IntPtr) function.

It receives the window handles associated with a thread.

The WNDENUMPROC type defines a pointer to this callback function.

DelegatesEnumThreadWindowsProc is a placeholder for the application-defined function name.

Definition

Namespace: DevCase.Win32.Delegates
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public delegate bool EnumThreadWindowsProc(
	IntPtr hWnd,
	IntPtr lParam
)

Parameters

hWnd  IntPtr
A handle to a window associated with the thread specified in the EnumThreadWindows(UInt32, DelegatesEnumThreadWindowsProc, IntPtr) function.
lParam  IntPtr
The application-defined value given in EnumThreadWindows(UInt32, DelegatesEnumThreadWindowsProc, IntPtr) functions.

Return Value

Boolean
To continue enumeration, the callback function must return ; to stop enumeration, it must return .

Remarks

See Also