Type Alias SaveFileDataCallback

Source
pub type SaveFileDataCallback = Option<unsafe extern "C" fn(fileName: *const c_char, data: *mut c_void, bytesToWrite: c_uint) -> bool>;
Expand description

FileIO: Save binary data

Aliased Type§

enum SaveFileDataCallback {
    None,
    Some(unsafe extern "C" fn(*const i8, *mut c_void, u32) -> bool),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(*const i8, *mut c_void, u32) -> bool)

Some value of type T.