Ejemplo n.º 1
0
 public static extern bool EnumDesktopWindows(IntPtr hDesktop, EnumDesktopWindowsDelegate lpEnumCallbackFunction, IntPtr lParam);
Ejemplo n.º 2
0
 public static bool enumDesktopWindows( EnumDesktopWindowsDelegate proc )
 {
     return EnumDesktopWindows(IntPtr.Zero, proc, IntPtr.Zero);
 }
Ejemplo n.º 3
0
 public static extern bool EnumDesktopWindows(IntPtr hDesktop,
     EnumDesktopWindowsDelegate lpfn,
     IntPtr lParam);
Ejemplo n.º 4
0
 public static bool EnumDesktopWindows(EnumDesktopWindowsDelegate callback)
 {
     return EnumDesktopWindows(GetThreadDesktop(GetCurrentThreadId()), callback, IntPtr.Zero);
 }