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