func GetKeyboardFocus() *Window { return (*Window)(unsafe.Pointer(C.SDL_GetKeyboardFocus())) }
func GetKeyboardFocus() *Window { window := C.SDL_GetKeyboardFocus() return wrapWindow(window) }
func GetKeyboardFocus() *Window { return &Window{C.SDL_GetKeyboardFocus()} }