pub type FMOD_DSP_READ_CALLBACK = Option<unsafe extern "C" fn(dsp_state: *mut FMOD_DSP_STATE, inbuffer: *mut f32, outbuffer: *mut f32, length: c_uint, inchannels: c_int, outchannels: *mut c_int) -> FMOD_RESULT>;Aliased Type§
pub enum FMOD_DSP_READ_CALLBACK {
None,
Some(unsafe extern "C" fn(*mut FMOD_DSP_STATE, *mut f32, *mut f32, u32, i32, *mut i32) -> FMOD_RESULT),
}