FMOD_FILE_READ_CALLBACK

Type Alias FMOD_FILE_READ_CALLBACK 

Source
pub type FMOD_FILE_READ_CALLBACK = Option<unsafe extern "C" fn(handle: *mut c_void, buffer: *mut c_void, sizebytes: c_uint, bytesread: *mut c_uint, userdata: *mut c_void) -> FMOD_RESULT>;

Aliased Type§

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

Variants§

§1.0.0

None

No value.

§1.0.0

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

Some value of type T.