示例#1
0
func GetKeyboardFocus() *Window {
	return (*Window)(unsafe.Pointer(C.SDL_GetKeyboardFocus()))
}
示例#2
0
文件: input.go 项目: krig/Go-SDL2
func GetKeyboardFocus() *Window {
	window := C.SDL_GetKeyboardFocus()
	return wrapWindow(window)
}
示例#3
0
文件: keyboard.go 项目: willemvds/sdl
func GetKeyboardFocus() *Window {
	return &Window{C.SDL_GetKeyboardFocus()}
}