예제 #1
0
파일: sdl.go 프로젝트: kearsley/Go-SDL
// Set a string describing an error to be submitted to the SDL Error system.
func SetError(description string) {
	GlobalMutex.Lock()

	cdescription := C.CString(description)
	C.SetError(cdescription)
	C.free(unsafe.Pointer(cdescription))

	GlobalMutex.Unlock()
}
예제 #2
0
파일: sdl.go 프로젝트: gnanderson/Go-SDL
// Set a string describing an error to be submitted to the SDL Error system.
func SetError(description string) {
	cdescription := C.CString(description)
	defer C.free(unsafe.Pointer(cdescription))
	C.SetError(cdescription)
}