Type Definition mupdf_sys::fz_output_seek_fn[][src]

pub type fz_output_seek_fn = Option<unsafe extern "C" fn(ctx: *mut fz_context, state: *mut c_void, offset: i64, whence: c_int)>;
Expand description

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

state: The output stream state to seek within.

offset, whence: as defined for fs_seek_output.