示例#1
0
 public Hook(Util.Win32API.HookType hookType)
 {
     _hookType     = hookType;
     _hookDelegate = new Util.Win32API.HookDelegate(this.InternalHookDelegate);
 }
示例#2
0
 public Hook(Util.Win32API.HookType hookType, Util.Win32API.HookDelegate hookDelegate)
 {
     _hookType     = hookType;
     _hookDelegate = hookDelegate;
 }
示例#3
0
 public Hook(Util.Win32API.HookType hookType)
 {
   _hookType = hookType;
   _hookDelegate = new Util.Win32API.HookDelegate(this.InternalHookDelegate);
 }