| 20 | } |
| 21 | |
| 22 | void w_NtSetInformationWorkerFactory( |
| 23 | HANDLE hWorkerFactory, |
| 24 | SET_WORKERFACTORYINFOCLASS WorkerFactoryInformationClass, |
| 25 | PVOID WorkerFactoryInformation, |
| 26 | ULONG WorkerFactoryInformationLength |
| 27 | ) |
| 28 | { |
| 29 | NT_SUCCESS_OR_RAISE( |
| 30 | "NtSetInformationWorkerFactory", |
| 31 | NtSetInformationWorkerFactory( |
| 32 | hWorkerFactory, |
| 33 | WorkerFactoryInformationClass, |
| 34 | WorkerFactoryInformation, |
| 35 | WorkerFactoryInformationLength) |
| 36 | ); |
| 37 | } |
no test coverage detected