| 230 | } |
| 231 | |
| 232 | static bool IsVkDown(int vk) |
| 233 | { |
| 234 | return (::GetKeyState(vk) & 0x8000) != 0; |
| 235 | } |
| 236 | |
| 237 | static void ImGui_ImplWin32_AddKeyEvent(ImGuiKey key, bool down, int native_keycode, int native_scancode = -1) |
| 238 | { |
no outgoing calls
no test coverage detected