| 129 | } |
| 130 | |
| 131 | void w_AssignProcessToJobObject(HANDLE hJob, HANDLE hProcess) |
| 132 | { |
| 133 | RAISE_IF_FALSE( |
| 134 | "AssignProcessToJobObject", |
| 135 | AssignProcessToJobObject( |
| 136 | hJob, |
| 137 | hProcess) |
| 138 | ); |
| 139 | } |
| 140 | |
| 141 | // TODO: Figure out including this in the error handlers |
| 142 | LPVOID w_VirtualAllocEx(HANDLE hTargetPid, SIZE_T szSizeOfChunk, DWORD dwAllocationType, DWORD dwProtect) |
no test coverage detected