コード例 #1
1
 public static extern IntPtr SetWindowsHookEx(int type, CallWndProc hook, IntPtr instance, int threadID);
コード例 #2
0
ファイル: GlobalHook.cs プロジェクト: blorgbeard/snapsize
 public void ProcessWindowMessage(ref Message m)
 {
     CallWndProc.ProcessWindowMessage(ref m);
 }
コード例 #3
0
ファイル: NativeMethods.cs プロジェクト: NicoG96/audio-band
 public static extern IntPtr SetWindowsHookEx(int idHook, CallWndProc lpfn, IntPtr hmod, IntPtr dwThreadId);
コード例 #4
0
 public static extern IntPtr SetWindowsHookEx(int type, CallWndProc hook, IntPtr instance, int threadID);
コード例 #5
0
ファイル: WinApi.cs プロジェクト: sargiss/HookLibrary
 internal static extern IntPtr SetWindowsHookEx(int idHook, CallWndProc lpfn, IntPtr hMod, uint dwThreadId);