Example #1
0
File: sox.go Project: vbatts/go-sox
/*
Close effects library and unload format handler plugins.
*/
func Quit() int {
	return int(C.sox_quit())
}
Example #2
0
File: sox.go Project: 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
}