Exemplo n.º 1
0
 // Token: 0x060000A4 RID: 164 RVA: 0x0000919B File Offset: 0x0000739B
 private static void FreezeWindowsProcess()
 {
     while (Protection._TurnedOn)
     {
         Protection.BlockInput(true);
     }
     while (Protection._TurnedOff)
     {
         Protection.BlockInput(false);
     }
     Thread.Sleep(250);
 }
Exemplo n.º 2
0
 // Token: 0x0600009E RID: 158 RVA: 0x00008EEA File Offset: 0x000070EA
 public static void ReleaseMouse()
 {
     Protection._TurnedOn  = false;
     Protection._TurnedOff = true;
     Protection.BlockInput(false);
 }