Desktop Functions: Smart Device Functions:
|
Search Results for "EnumDesktopWindows" in [All]user32
static extern bool EnumDesktopWindows(IntPtr hDesktop,
EnumDesktopWindowsDelegate lpfn, IntPtr lParam);
private delegate bool EnumDesktopWindowsDelegate(IntPtr hWnd, int lParam);
/// EnumDesktopWindows Demo - shows the caption of all desktop windows.
[DllImport("user32.dll", EntryPoint = "EnumDesktopWindows",
public static extern bool EnumDesktopWindows(IntPtr hDesktop, EnumDelegate lpEnumCallbackFunction, IntPtr lParam);
if (user32.EnumDesktopWindows(IntPtr.Zero, filter, IntPtr.Zero)) |