| 134 | // clang-format on |
| 135 | |
| 136 | void RecoverModifiersStatus(int& ctrl, int& shift, int& alt) |
| 137 | { |
| 138 | ctrl = (GetKeyState(VK_CONTROL) & 0x8000) != 0; |
| 139 | shift = (GetKeyState(VK_SHIFT) & 0x8000) != 0; |
| 140 | alt = (GetKeyState(VK_MENU) & 0x8000) != 0; |
| 141 | } |
| 142 | |
| 143 | void RecoverKeyEventInformation( |
| 144 | UINT vCode, UINT nFlags, int& ctrl, int& shift, int& alt, char& keyCode, const char*& keySym) |
no outgoing calls
no test coverage detected