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