func (code Scancode) c() C.SDL_Scancode { return C.SDL_Scancode(code) }
func GetKeyFromScancode(scancode int32) int32 { return int32(C.SDL_GetKeyFromScancode(C.SDL_Scancode(scancode))) }
func GetScancodeName(scancode int32) string { name := C.GoString(C.SDL_GetScancodeName(C.SDL_Scancode(scancode))) return name }
func (s Scancode) c() C.SDL_Scancode { return C.SDL_Scancode(s) }