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

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

作者:manver    项目:Go-SD   
// Gets the window title and icon name.
func WM_GetCaption() (title, icon string) {
	//SDL seems to free these strings.  TODO: Check to see if that's the case
	var ctitle, cicon *C.char
	C.SDL_WM_GetCaption(&ctitle, &cicon)
	title, icon = C.GoString(ctitle), C.GoString(cicon)
	return
}

作者:kearsle    项目:Go-SD   
// Gets the window title and icon name.
func WM_GetCaption() (title, icon string) {
	GlobalMutex.Lock()

	// SDL seems to free these strings.  TODO: Check to see if that's the case
	var ctitle, cicon *C.char
	C.SDL_WM_GetCaption(&ctitle, &cicon)
	title = C.GoString(ctitle)
	icon = C.GoString(cicon)

	GlobalMutex.Unlock()

	return
}


问题


面经


文章

微信
公众号

扫码关注公众号