FMOD_DSP_READ_CALLBACK

Type Alias FMOD_DSP_READ_CALLBACK 

Source
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),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(*mut FMOD_DSP_STATE, *mut f32, *mut f32, u32, i32, *mut i32) -> FMOD_RESULT)

Some value of type T.