Esempio n. 1
0
func stopPlaying() error {
	if playing {
		playing = false
		C.stop()
	}
	return nil
}
Esempio n. 2
0
func stopPlaying() error {
	if playing {
		playing = false
		if err := C.stop(); err != nil {
			return errors.New(C.GoString(err))
		}
	}
	return nil
}
Esempio n. 3
0
func term1() {
	//
	C.stop(C.int(cdd))
	C.lockDoor(C.int(cdd))
	C.eject(C.int(cdd))
}
Esempio n. 4
0
func term() {
	//
	C.stop(C.int(cdd))
}
Esempio n. 5
0
func ClearAudioBuffer() {
	mutex.Lock()
	C.stop()
	mutex.Unlock()
}
Esempio n. 6
0
func Stop() {
	C.stop()
}