Esempio n. 1
0
 static extern bool GetThreadContext(IntPtr hThread, ref CONTEXT lpContext);
Esempio n. 2
0
 static extern bool SetThreadContext(IntPtr hThread, [In] ref CONTEXT lpContext);
Esempio n. 3
0
 public Context(CONTEXT context64, IntPtr hThread)
 {
     _hThread       = hThread;
     isContext64    = true;
     this.context64 = context64;
 }