| 245 | } |
| 246 | |
| 247 | void InputManager::ReleaseMutex(HANDLE mutex_handle) { |
| 248 | if (mutex_handle != NULL) { |
| 249 | ::ReleaseMutex(mutex_handle); |
| 250 | ::CloseHandle(mutex_handle); |
| 251 | } |
| 252 | } |
| 253 | |
| 254 | InputState InputManager::CloneCurrentInputState(void) { |
| 255 | InputState current_input_state; |
no outgoing calls
no test coverage detected