作者: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
}