SDL_KeyboardEvent (3) Linux Manual Page
SDL_KeyboardEvent – Keyboard event structure Structure Definition typedef struct{ Uint8 type; Uint8 state; SDL_keysym keysym; } SDL_KeyboardEvent; Structure Data type SDL_KEYDOWN or SDL_KEYUP state SDL_PRESSED or SDL_RELEASED keysym Contains key press information Description SDL_KeyboardEvent is a member of the SDL_Event union and is used when an event of type SDL_KEYDOWN or SDL_KEYUP is reported. The…
