Desktop Functions: Smart Device Functions:
|
Search Results for "EnumWindowsProc" in [All]user32
public delegate bool EnumWindowsProc(IntPtr hwnd, IntPtr lParam);
public static extern bool EnumChildWindows(IntPtr hwndParent, EnumWindowsProc lpEnumFunc, IntPtr lParam);
Private Shared Function EnumChildWindows(ByVal hWndParent As System.IntPtr, ByVal lpEnumFunc As EnumWindowsProc, ByVal lParam As Integer) As Boolean 2: TileWindows ByVal lpEnumFunc As EnumWindowsProc, _
Dim CB As New EnumWindowsProc(Function(hwnd As IntPtr, lParam As IntPtr) Delegates
private delegate bool EnumWindowsProc(IntPtr hWnd, IntPtr lParam);
Private Delegate Function EnumWindowsProc(ByVal hWnd As IntPtr, ByVal lParam As IntPtr) As Boolean
private delegate bool EnumWindowsProc(IntPtr hWnd, ref IntPtr lParam);
Private Delegate Function EnumWindowsProc(ByVal hWnd As IntPtr, ByRef lParam As IntPtr) As Boolean |