| 1 | #include "WorkerFactory.hpp" |
| 2 | |
| 3 | void w_NtQueryInformationWorkerFactory( |
| 4 | HANDLE hWorkerFactory, |
| 5 | QUERY_WORKERFACTORYINFOCLASS WorkerFactoryInformationClass, |
| 6 | PVOID WorkerFactoryInformation, |
| 7 | ULONG WorkerFactoryInformationLength, |
| 8 | PULONG ReturnLength |
| 9 | ) |
| 10 | { |
| 11 | NT_SUCCESS_OR_RAISE( |
| 12 | "NtQueryInformationWorkerFactory", |
| 13 | NtQueryInformationWorkerFactory( |
| 14 | hWorkerFactory, |
| 15 | WorkerFactoryInformationClass, |
| 16 | WorkerFactoryInformation, |
| 17 | WorkerFactoryInformationLength, |
| 18 | ReturnLength) |
| 19 | ); |
| 20 | } |
| 21 | |
| 22 | void w_NtSetInformationWorkerFactory( |
| 23 | HANDLE hWorkerFactory, |
no test coverage detected