Example #1
0
 private void Unhook()
 {
     foreach (var hookId in hookIds)
     {
         if (hookId.ToInt64() > 0)
         {
             PInvokeHelper.UnhookWindowsHookEx(hookId);
         }
     }
 }