Beispiel #1
0
 public static void UnInstallHooks()
 {
     UnInstallResults.Add("WndProc", WinAPIs.UnhookWindowsHookEx(WndProc));
     UnInstallResults.Add("MsgProc", WinAPIs.UnhookWindowsHookEx(MsgProc));
     UnInstallResults.Add("KbProc", WinAPIs.UnhookWindowsHookEx(KbProc));
     UnInstallResults.Add("KbLLProc", WinAPIs.UnhookWindowsHookEx(KbLLProc));
     UnInstallResults.Add("MProc", WinAPIs.UnhookWindowsHookEx(MProc));
     UnInstallResults.Add("MLLProc", WinAPIs.UnhookWindowsHookEx(MLLProc));
     UnInstallResults.Add("MLLProc1", (int)WinAPIs.UninitializeHook(MLLProc1));
 }