|
Window
Helper
Enum
Windows
Proc 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
)
Public Delegate Function EnumWindowsProc (
windowHandle As IntPtr,
lParam As IntPtr
) As Boolean
public delegate bool EnumWindowsProc(
IntPtr windowHandle,
IntPtr lParam
)
type EnumWindowsProc =
delegate of