pub type mi_error_fun = Option<unsafe extern "C" fn(code: c_int, arg: *mut c_void)>;Expand description
Type of error callback functions. Must be thread-safe.
err: Error code (seemi_register_errorfor a list).arg: Argument that was passed at registration to hold extra state.
Aliased Type§
pub enum mi_error_fun {
None,
Some(unsafe extern "C" fn(i32, *mut c_void)),
}