Type Definition mupdf_sys::fz_document_open_accel_fn

source ·
pub type fz_document_open_accel_fn = Option<unsafe extern "C" fn(ctx: *mut fz_context, filename: *const c_char, accel: *const c_char) -> *mut fz_document>;
Expand description

Function type to open a document from a file, with accelerator data.

filename: file to open

accel: accelerator file

Pointer to opened document. Throws exception in case of error.