| 96 | } |
| 97 | |
| 98 | BOOLEAN w_RtlAdjustPrivilege(ULONG Privilege, BOOLEAN Enable, BOOLEAN CurrentThread) |
| 99 | { |
| 100 | BOOLEAN Enabled = NULL; |
| 101 | NT_SUCCESS_OR_RAISE( |
| 102 | "RtlAdjustPrivilege", |
| 103 | RtlAdjustPrivilege( |
| 104 | Privilege, |
| 105 | Enable, |
| 106 | CurrentThread, |
| 107 | &Enabled) |
| 108 | ); |
| 109 | return Enabled; |
| 110 | } |
| 111 | |
| 112 | void w_ZwSetIoCompletion(HANDLE IoCompletionHandle, PVOID KeyContext, PVOID ApcContext, NTSTATUS IoStatus, ULONG_PTR IoStatusInformation) |
| 113 | { |
no test coverage detected