FMOD_CODEC_READ_CALLBACK

Type Alias FMOD_CODEC_READ_CALLBACK 

Source
pub type FMOD_CODEC_READ_CALLBACK = Option<unsafe extern "C" fn(codec_state: *mut FMOD_CODEC_STATE, buffer: *mut c_void, samples_in: c_uint, samples_out: *mut c_uint) -> FMOD_RESULT>;

Aliased Type§

pub enum FMOD_CODEC_READ_CALLBACK {
    None,
    Some(unsafe extern "C" fn(*mut FMOD_CODEC_STATE, *mut c_void, u32, *mut u32) -> FMOD_RESULT),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(*mut FMOD_CODEC_STATE, *mut c_void, u32, *mut u32) -> FMOD_RESULT)

Some value of type T.