| 123 | |
| 124 | #ifdef Q_OS_WIN |
| 125 | void Process::attachJob() |
| 126 | { |
| 127 | HANDLE hProcess = OpenProcess(PROCESS_ALL_ACCESS, true, processId()); |
| 128 | if (hProcess != nullptr) { |
| 129 | AssignProcessToJobObject(jobObject, hProcess); |
| 130 | } |
| 131 | } |
| 132 | #endif |
| 133 | |
| 134 | void MznDriver::setLocation(const QString &mznDistribPath) |
nothing calls this directly
no outgoing calls
no test coverage detected