tikz-gallery-generator

Custum build of stapix for tikz.pablopie.xyz

NameSizeMode
..
mupdf-sys/src/lib.rs 438 bytes -rw-r--r--
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
#![no_std]
#![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
#![allow(clippy::all)]

include!(concat!(env!("OUT_DIR"), "/bindings.rs"));

#[inline]
pub unsafe fn fz_new_context(
  alloc: *const fz_alloc_context,
  locks: *const fz_locks_context,
  max_store: usize,
) -> *mut fz_context {
  let version = FZ_VERSION.as_ptr() as *const i8;
  fz_new_context_imp(alloc, locks, max_store, version)
}