| 74 | } |
| 75 | |
| 76 | HKeyboard GetKeyboard(HContext context, uint8_t index) |
| 77 | { |
| 78 | if (index < MAX_KEYBOARD_COUNT) |
| 79 | return &context->m_Keyboards[index]; |
| 80 | else |
| 81 | return INVALID_KEYBOARD_HANDLE; |
| 82 | } |
| 83 | |
| 84 | HMouse GetMouse(HContext context, uint8_t index) |
| 85 | { |
no outgoing calls