SDL_keysym (3) Linux Manual Page
SDL_keysym – Keysym structure Structure Definitiontypedef struct{ Uint8 scancode; SDLKey sym; SDLMod mod; Uint16 unicode; } SDL_keysym;Structure Datascancode Hardware specific scancode sym SDL virtual keysym mod Current key modifiers unicode Translated characterDescriptionThe SDL_keysym structure is used by reporting key presses and releases since it is a part of the SDL_KeyboardEvent. The scancode field should generally…
