Desktop Functions: Smart Device Functions:
|
Search Results for "GetThreadContext" in [All]kernel32
static extern bool GetThreadContext(IntPtr hThread, ref CONTEXT lpContext);
static extern bool GetThreadContext(IntPtr hThread, ref CONTEXT64 lpContext); Here are the structures and enums used by GetThreadContext:
static extern bool GetThreadContext (IntPtr hThread, ref CONTEXT lpContext);
if (GetThreadContext(hThread, ref context))
if ( !GetThreadContext( GetCurrentThread(), ref cntx ) ) 3: WOW64
<DllImport("kernel32.dll", EntryPoint:="Wow64GetThreadContext"), SuppressUnmanagedCodeSecurity> _
Private Shared Function Wow64GetThreadContext( _ |