Skip to content

Latest commit

 

History

History
960 lines (955 loc) · 9.24 KB

SDLKeycodeLookup.mediawiki

File metadata and controls

960 lines (955 loc) · 9.24 KB

Draft

THIS PAGE IS A WORK IN PROGRESS ... Please make edits to this page to improve it!

SDL Keycode Lookup Table

Keycodes for keys with printable characters are represented by the character byte in parentheses. Keycodes without character representations are determined by their scancode bitwise OR-ed with 1<<30 (0x40000000).

<bgcolor="#ededed"></bgcolor="#ededed">Decimal Value <bgcolor="#ededed"></bgcolor="#ededed">Hex Value (Char) <bgcolor="#ededed"></bgcolor="#ededed">SDL_Keycode Constant
0 0x00 ('\0') SDLK_UNKNOWN
8 0x08 ('\b') SDLK_BACKSPACE
9 0x09 ('\t') SDLK_TAB
13 0x0D ('\r') SDLK_RETURN
27 0x1B ('\033') SDLK_ESCAPE
32 0x20 (' ') SDLK_SPACE
33 0x21 ('!') SDLK_EXCLAIM
34

CategoryDraft