Type Definition mupdf_sys::fz_output_tell_fn

source ·
pub type fz_output_tell_fn = Option<unsafe extern "C" fn(ctx: *mut fz_context, state: *mut c_void) -> i64>;
Expand description

A function type for use when implementing fz_outputs. The supplied function of this type is called when fz_tell_output is requested.

state: The output stream state to report on.

Returns the offset within the output stream.