Wow64SuspendThread function kernel32
Suspends the specified WOW64 thread.
To learn more, see learn.microsoft.com/windows/win32/api/winbase/nf-winbase-wow64suspendthread.
Implementation
Win32Result<int> Wow64SuspendThread(HANDLE hThread) {
resolveGetLastError();
final result_ = _Wow64SuspendThread(hThread);
return .new(value: result_, error: GetLastError());
}