| 27 | #define ID_LAYOUT_BASE 4000 // 1.2.9 |
| 28 | |
| 29 | struct KeyState { |
| 30 | bool registered = false; |
| 31 | bool keyDown = false; |
| 32 | int group; |
| 33 | bool simulated = false; |
| 34 | }; |
| 35 | |
| 36 | struct GroupState { |
| 37 | int previousKey; |
nothing calls this directly
no outgoing calls
no test coverage detected