lmdb_sys/
lib.rs

1#![deny(warnings)]
2#![allow(non_camel_case_types)]
3#![allow(clippy::all)]
4#![doc(html_root_url = "https://docs.rs/lmdb-rkv-sys/0.11.2")]
5
6extern crate libc;
7
8#[cfg(unix)]
9#[allow(non_camel_case_types)]
10pub type mdb_mode_t = ::libc::mode_t;
11#[cfg(windows)]
12#[allow(non_camel_case_types)]
13pub type mdb_mode_t = ::libc::c_int;
14
15#[cfg(unix)]
16#[allow(non_camel_case_types)]
17pub type mdb_filehandle_t = ::libc::c_int;
18#[cfg(windows)]
19#[allow(non_camel_case_types)]
20pub type mdb_filehandle_t = *mut ::libc::c_void;
21
22include!("bindings.rs");