pub type fz_warning_cb = Option<unsafe extern "C" fn(user: *mut c_void, message: *const c_char)>;Expand description
A callback called whenever a warning message is generated.
The user pointer passed to fz_set_warning_callback() is
passed along with the warning message.
Aliased Type§
pub enum fz_warning_cb {
None,
Some(unsafe extern "C" fn(*mut c_void, *const i8)),
}