SDL_GetScancodeFromKey - Get the scancode corresponding to the given key code according to the current
Contents
Availability
This function is available since SDL 3.2.0.
Description
Note that there may be multiple scancode+modifier states that can generate this keycode, this will just
return the first one found.
Function Parameters
key the desired SDL_Keycode to query.
modstate
a pointer to the modifier state that would be used when the scancode generates this key, may be
NULL.
Name
SDL_GetScancodeFromKey - Get the scancode corresponding to the given key code according to the current
keyboard layout.
Return Value
Returns the SDL_Scancode that corresponds to the given SDL_Keycode.
See Also
SDL_GetKeyFromScancode(3), SDL_GetScancodeName(3) Simple Directmedia Layer SDL 3.2.20 SDL_GetScancodeFromKey(3)
Synopsis
#include<SDL3/SDL_keyboard.h>SDL_ScancodeSDL_GetScancodeFromKey(SDL_Keycodekey,SDL_Keymod*modstate);
Thread Safety
This function is not thread safe.
