예제 #1
0
파일: DebugWrap.cs 프로젝트: daeken/QtChaos
 public static DEBUG_EVENT WaitForDebugEvent(uint timeout)
 {
     DEBUG_EVENT evt = new DEBUG_EVENT();
     WaitForDebugEvent(ref evt, timeout);
     return evt;
 }
예제 #2
0
파일: DebugWrap.cs 프로젝트: daeken/QtChaos
 public static bool ContinueDebugEvent(DEBUG_EVENT evt, bool handled)
 {
     uint status;
     if(handled)
         status = 0x00010002;
     else
         status = 0x80010001;
     return ContinueDebugEvent(evt.dwProcessId, evt.dwThreadId, status);
 }