1#![allow(non_upper_case_globals)]
2#![allow(non_camel_case_types)]
3#![allow(non_snake_case)]
4#![allow(dead_code)]
5#![allow(clippy::unreadable_literal)]
6#![allow(deref_nullptr)]
7
8#[cfg(test)]
9mod test;
10
11#[cfg(all(not(feature = "update-bindings"), feature = "generate-bindings"))]
12include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
13
14#[cfg(any(feature = "update-bindings", not(feature = "generate-bindings")))]
15include!(concat!(
16 env!("CARGO_MANIFEST_DIR"),
17 "/generated/bindings.rs"
18));