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