| 36 | } |
| 37 | |
| 38 | WORKER_FACTORY_BASIC_INFORMATION PoolParty::GetWorkerFactoryBasicInformation(HANDLE hWorkerFactory) const |
| 39 | { |
| 40 | WORKER_FACTORY_BASIC_INFORMATION WorkerFactoryInformation{ 0 }; |
| 41 | w_NtQueryInformationWorkerFactory(hWorkerFactory, WorkerFactoryBasicInformation, &WorkerFactoryInformation, sizeof(WorkerFactoryInformation), nullptr); |
| 42 | BOOST_LOG_TRIVIAL(info) << "Retrieved target worker factory basic information"; |
| 43 | return WorkerFactoryInformation; |
| 44 | } |
| 45 | |
| 46 | void PoolParty::HijackHandles() |
| 47 | { |
no test coverage detected