| 984 | } |
| 985 | |
| 986 | BOOL WINAPI KbResumeProcess(ULONG ProcessId) |
| 987 | { |
| 988 | KB_SUSPEND_RESUME_PROCESS_IN Input = {}; |
| 989 | Input.ProcessId = ProcessId; |
| 990 | return KbSendRequest(Ctls::KbResumeProcess, &Input, sizeof(Input)); |
| 991 | } |
| 992 | |
| 993 | BOOL WINAPI KbGetThreadContext(ULONG ThreadId, OUT PCONTEXT Context, ULONG ContextSize, OPTIONAL WdkTypes::KPROCESSOR_MODE ProcessorMode) |
| 994 | { |
nothing calls this directly
no test coverage detected