Пример #1
0
/*
Close effects library and unload format handler plugins.
*/
func Quit() int {
	return int(C.sox_quit())
}
Пример #2
0
Файл: sox.go Проект: krig/go-sox
// Quit closes the effects library and unloads
// the format handler plugins.
func Quit() bool {
	ret := C.sox_quit()
	return ret == C.SOX_SUCCESS
}