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