Ejemplo n.º 1
0
func (a *Stream) GetPlaying() bool {
	return bool(C.al_get_audio_stream_playing((*C.ALLEGRO_AUDIO_STREAM)(unsafe.Pointer(a))))
}
Ejemplo n.º 2
0
Archivo: audio.go Proyecto: beoran/algo
// Returns wheter or not the audio stream is playing
func (self *AudioStream) Playing() bool {
	return cb2b(C.al_get_audio_stream_playing(self.handle))
}