| 218 | } |
| 219 | |
| 220 | bool CProcess::IsValidProcess() |
| 221 | { |
| 222 | if (hProcess == INVALID_HANDLE_VALUE) |
| 223 | return false; |
| 224 | return (WaitForSingleObject(this->hProcess, 0) == WAIT_TIMEOUT); |
| 225 | } |
| 226 | } |
nothing calls this directly
no outgoing calls
no test coverage detected