| 646 | } |
| 647 | |
| 648 | void InputManager::AddPauseInput(HWND window_handle, int duration) { |
| 649 | // Leverage the INPUT_HARDWARE type. |
| 650 | INPUT pause_input; |
| 651 | pause_input.type = INPUT_HARDWARE; |
| 652 | pause_input.hi.uMsg = duration; |
| 653 | this->inputs_.push_back(pause_input); |
| 654 | } |
| 655 | |
| 656 | void InputManager::AddMouseInput(HWND window_handle, long input_action, int x, int y) { |
| 657 | LOG(TRACE) << "Entering InputManager::AddMouseInput"; |
no outgoing calls
no test coverage detected