Beispiel #1
0
 internal static extern bool SetConsoleCtrlHandler(HandlerRountine handlerRountine, bool add);
Beispiel #2
0
 public static void Init(HandlerRountine handlerRountine)
 {
     _handlerRountine = handlerRountine;
     SetConsoleCtrlHandler(_handlerRountine, true);
     DisableConsoleClose();
 }