| 1001 | } |
| 1002 | |
| 1003 | BOOL WINAPI KbSetThreadContext(ULONG ThreadId, IN PCONTEXT Context, ULONG ContextSize, OPTIONAL WdkTypes::KPROCESSOR_MODE ProcessorMode) |
| 1004 | { |
| 1005 | KB_GET_SET_THREAD_CONTEXT_IN Input = {}; |
| 1006 | Input.ThreadId = ThreadId; |
| 1007 | Input.ContextSize = ContextSize; |
| 1008 | Input.ProcessorMode = ProcessorMode; |
| 1009 | Input.Context = reinterpret_cast<WdkTypes::PVOID>(Context); |
| 1010 | return KbSendRequest(Ctls::KbSetThreadContext, &Input, sizeof(Input)); |
| 1011 | } |
| 1012 | } |
| 1013 | |
| 1014 | namespace MemoryManagement |
nothing calls this directly
no test coverage detected