| 66 | } |
| 67 | |
| 68 | HGamepad GetGamepad(HContext context, uint8_t index) |
| 69 | { |
| 70 | if (index < MAX_GAMEPAD_COUNT) |
| 71 | return &context->m_Gamepads[index]; |
| 72 | else |
| 73 | return INVALID_GAMEPAD_HANDLE; |
| 74 | } |
| 75 | |
| 76 | HKeyboard GetKeyboard(HContext context, uint8_t index) |
| 77 | { |
no outgoing calls