| 110 | } |
| 111 | |
| 112 | void w_ZwSetIoCompletion(HANDLE IoCompletionHandle, PVOID KeyContext, PVOID ApcContext, NTSTATUS IoStatus, ULONG_PTR IoStatusInformation) |
| 113 | { |
| 114 | NT_SUCCESS_OR_RAISE( |
| 115 | "ZwSetIoCompletion", |
| 116 | ZwSetIoCompletion( |
| 117 | IoCompletionHandle, |
| 118 | KeyContext, |
| 119 | ApcContext, |
| 120 | IoStatus, |
| 121 | IoStatusInformation) |
| 122 | ); |
| 123 | } |
| 124 | |
| 125 | void w_NtSetTimer2(HANDLE TimerHandle, PLARGE_INTEGER DueTime, PLARGE_INTEGER Period, PT2_SET_PARAMETERS Parameters) |
| 126 | { |
no test coverage detected