コード例 #1
0
ファイル: WindowsAPI.cs プロジェクト: xxy1991/cozy
 public static extern bool EnumDesktopWindows(IntPtr hDesktop, EnumDesktopWindowsDelegate lpEnumCallbackFunction, IntPtr lParam);
コード例 #2
0
ファイル: Win32.cs プロジェクト: KasumiL5x/Fullscreenizer
 public static bool enumDesktopWindows( EnumDesktopWindowsDelegate proc )
 {
     return EnumDesktopWindows(IntPtr.Zero, proc, IntPtr.Zero);
 }
コード例 #3
0
ファイル: UnmanagedCode.cs プロジェクト: alegen/winspaces
 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);
 }