| 162 | } |
| 163 | |
| 164 | bool Process::IsRunning() const // todo: check advantages of this against bool win32::IsProcessRunning(HANDLE handle); |
| 165 | { |
| 166 | return GetExitCodeProcess(m_hProcess) == STILL_ACTIVE; |
| 167 | } |
| 168 | |
| 169 | void Process::Wait() const |
| 170 | { |
nothing calls this directly
no test coverage detected