예제 #1
0
파일: hints.go 프로젝트: jbondeson/Go-SDL2
func SetHintWithPriority(name string, value string, priority int) bool {
	cname := C.CString(name)
	cvalue := C.CString(value)

	ret := C.SDL_SetHintWithPriority(cname, cvalue, C.SDL_HintPriority(priority))

	C.free(unsafe.Pointer(cname))
	C.free(unsafe.Pointer(cvalue))

	return ret == C.SDL_TRUE
}
예제 #2
0
파일: hints.go 프로젝트: emlai/go-sdl2
func (hp HintPriority) c() C.SDL_HintPriority {
	return C.SDL_HintPriority(hp)
}