| 320 | } |
| 321 | |
| 322 | WaitResult WaitForAllObjects(const HANDLE* begin, const HANDLE* end, DWORD milliSeconds) |
| 323 | { |
| 324 | return WaitForMultipleObjects(begin, end, true, milliSeconds); |
| 325 | } |
| 326 | |
| 327 | bool IsProcessRunning(HANDLE handle) |
| 328 | { |
nothing calls this directly
no test coverage detected