Example #1
0
func GetKeyboardFocus() *Window {
	return (*Window)(unsafe.Pointer(C.SDL_GetKeyboardFocus()))
}
Example #2
0
func GetKeyboardFocus() *Window {
	window := C.SDL_GetKeyboardFocus()
	return wrapWindow(window)
}
Example #3
0
func GetKeyboardFocus() *Window {
	return &Window{C.SDL_GetKeyboardFocus()}
}