pub type SoundPcmReadCallback = Option<fn(sound: &Sound, data: &mut [i16]) -> Status>;Expand description
callback which allow to set/change data that will be played
Aliased Type§
pub enum SoundPcmReadCallback {
None,
Some(fn(&Sound, &mut [i16]) -> Status),
}