func (a *Stream) SetPlaymode(val uint32) bool { return bool(C.al_set_audio_stream_playmode((*C.ALLEGRO_AUDIO_STREAM)(unsafe.Pointer(a)), C.ALLEGRO_PLAYMODE(val))) }
// Sets the play mode of the audio stream. func (self *AudioStream) SetPlaymode(val PlayMode) bool { return cb2b(C.al_set_audio_stream_playmode(self.handle, val.toC())) }