ContinueDebugEvent function kernel32
Enables a debugger to continue a thread that previously reported a debugging event.
To learn more, see learn.microsoft.com/windows/win32/api/debugapi/nf-debugapi-continuedebugevent.
Implementation
Win32Result<bool> ContinueDebugEvent(
int dwProcessId,
int dwThreadId,
NTSTATUS dwContinueStatus,
) {
final result_ = ContinueDebugEvent_Wrapper(
dwProcessId,
dwThreadId,
dwContinueStatus,
);
return Win32Result(value: result_.value.i32 != FALSE, error: result_.error);
}