Wow64SuspendThread function Null safety kernel32
- int hThread
Suspends the specified WOW64 thread.
DWORD Wow64SuspendThread(
HANDLE hThread
);
Implementation
int Wow64SuspendThread(int hThread) {
final _Wow64SuspendThread = _kernel32.lookupFunction<
Uint32 Function(IntPtr hThread),
int Function(int hThread)>('Wow64SuspendThread');
return _Wow64SuspendThread(hThread);
}