Exemplo n.º 1
0
// undocumented
func SetSoundFonts(paths string) bool {
	_paths := C.CString(paths)
	defer C.free(unsafe.Pointer(_paths))
	return int(C.Mix_SetSoundFonts(_paths)) == 0
}
Exemplo n.º 2
0
func SetSoundFonts(paths string) bool {
	_paths := (C.CString)(paths)
	return int(C.Mix_SetSoundFonts(_paths)) == 0
}