Golang C.SDL_ShowCursor类(方法)实例源码

下面列出了Golang C.SDL_ShowCursor 类(方法)源码代码实例,从而了解它的用法。

作者:21isgonnabeagoodyea    项目:gg   
func ShowCursor(show bool) {
	if show {
		C.SDL_ShowCursor(C.SDL_TRUE)
	} else {
		C.SDL_ShowCursor(C.SDL_FALSE)
	}
}

作者:kearsle    项目:Go-SD   
// Toggle whether or not the cursor is shown on the screen.
func ShowCursor(toggle int) int {
	GlobalMutex.Lock()
	state := int(C.SDL_ShowCursor((C.int)(toggle)))
	GlobalMutex.Unlock()
	return state
}

作者:gnanderso    项目:Go-SD   
func ShowCursor(toggle int) int {
	return int(C.SDL_ShowCursor(C.int(toggle)))
}

作者:kri    项目:Go-SDL   
// Toggle whether or not the cursor is shown on the screen.
func ShowCursor(toggle int) int {
	state := int(C.SDL_ShowCursor((C.int)(toggle)))
	return state
}

作者:kyleconro    项目:gold   
func ShowCursor(toggle int) int {
	_toggle := (C.int)(toggle)
	return (int)(C.SDL_ShowCursor(_toggle))
}

作者:willemvd    项目:sd   
func ShowCursor(t int) bool {
	return C.SDL_ShowCursor(C.int(t)) != 0
}


问题


面经


文章

微信
公众号

扫码关注公众号