Type Alias SaveFileTextCallback

Source
pub type SaveFileTextCallback = Option<unsafe extern "C" fn(fileName: *const c_char, text: *mut c_char) -> bool>;

Aliased Type§

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

Variants§

§1.0.0

None

No value.

§1.0.0

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

Some value of type T.