Beispiel #1
0
 public static void UnInstallWindowEventHooks()
 {
     UnInstallResults.Add("create", WinAPIs.UnhookWinEvent(hCreate));
     UnInstallResults.Add("destroy", WinAPIs.UnhookWinEvent(hDestroy));
     UnInstallResults.Add("show", WinAPIs.UnhookWinEvent(hShow));
     UnInstallResults.Add("select", WinAPIs.UnhookWinEvent(hSelect));
     UnInstallResults.Add("minimize", WinAPIs.UnhookWinEvent(hMinimize));
     UnInstallResults.Add("minimizeEnd", WinAPIs.UnhookWinEvent(hMinimizeEnd));
     UnInstallResults.Add("move", WinAPIs.UnhookWinEvent(hMoveSize));
     UnInstallResults.Add("moveEnd", WinAPIs.UnhookWinEvent(hMoveSizeEnd));
 }