raylib_wasm

Type Alias SaveFileDataCallback

source
pub type SaveFileDataCallback = Option<unsafe extern "C" fn(fileName: *const c_char, data: *mut c_void, dataSize: c_int) -> bool>;

Aliased Type§

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

Variants§

§1.0.0

None

No value.

§1.0.0

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

Some value of type T.