| 15 | return WaitForSingleObject(this->hThread, INFINITE) != WAIT_FAILED; |
| 16 | } |
| 17 | DWORD RemoteThread::GetExitCode() const |
| 18 | { |
| 19 | DWORD dwExitCode = NULL; |
| 20 | GetExitCodeThread(this->hThread, &dwExitCode); |
| 21 | return dwExitCode; |
| 22 | } |
| 23 | |
| 24 | RemoteThread::operator bool() const |
| 25 | { |
no outgoing calls
no test coverage detected