pub type SaveFileTextCallback = Option<unsafe extern "C" fn(fileName: *const c_char, text: *mut c_char) -> bool>;
Expand description
FileIO: Save text data
Aliased Type§
enum SaveFileTextCallback {
None,
Some(unsafe extern "C" fn(*const i8, *mut i8) -> bool),
}