| 79 | } |
| 80 | |
| 81 | void EngineProcess::killHandle(HANDLE* handle) |
| 82 | { |
| 83 | if (*handle == INVALID_HANDLE_VALUE) |
| 84 | return; |
| 85 | if (*handle != NULL) |
| 86 | CloseHandle(*handle); |
| 87 | *handle = INVALID_HANDLE_VALUE; |
| 88 | } |
| 89 | |
| 90 | void EngineProcess::cleanup() |
| 91 | { |
nothing calls this directly
no outgoing calls
no test coverage detected