func GetKeyFromScancode(scancode int32) int32 { return int32(C.SDL_GetKeyFromScancode(C.SDL_Scancode(scancode))) }
func (s Scancode) GetKey() Keycode { return Keycode(C.SDL_GetKeyFromScancode(s.c())) }
func GetKeyFromScancode(scancode Scancode) Keycode { _scancode := (C.SDL_Scancode)(scancode) return (Keycode)(C.SDL_GetKeyFromScancode(_scancode)) }
func GetKeyFromScancode(code Scancode) Keycode { return (Keycode)(C.SDL_GetKeyFromScancode(code.c())) }