| 120 | } |
| 121 | |
| 122 | void ddio_InternalKeyClose() { |
| 123 | switch (Keyboard_mode) { |
| 124 | case Input_null: |
| 125 | return ddio_null_InternalKeyClose(); |
| 126 | case Input_sdl: |
| 127 | return ddio_sdl_InternalKeyClose(); |
| 128 | } |
| 129 | } |
| 130 | |
| 131 | bool ddio_InternalKeyState(uint8_t key) { |
| 132 | switch (Keyboard_mode) { |
no test coverage detected