1 2 3 4 5 6 7 8 9 10 11 12 13 14
#![deny(warnings)]
#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals)]
#![allow(deref_nullptr)] // TODO(fxbug.dev/74605): Remove once bindgen is fixed.
#![allow(clippy::missing_safety_doc, clippy::too_many_arguments)]
use libc::*;
include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
mod types;
mod verbs;
pub use self::types::*;
pub use self::verbs::*;