#![allow(
non_snake_case,
non_camel_case_types,
non_upper_case_globals,
clippy::unseparated_literal_suffix,
improper_ctypes,
missing_debug_implementations,
trivial_casts,
clippy::all,
unused
)]
#![allow(deref_nullptr)]
#[cfg(all(
not(feature = "generate-bindings"),
target_arch = "x86_64",
target_os = "linux"
))]
include!(concat!(
env!("CARGO_MANIFEST_DIR"),
"/src/bindings/x86_64-unknown-linux-gnu.rs"
));
#[cfg(all(
not(feature = "generate-bindings"),
target_arch = "aarch64",
target_os = "linux"
))]
include!(concat!(
env!("CARGO_MANIFEST_DIR"),
"/src/bindings/aarch64-unknown-linux-gnu.rs"
));
#[cfg(all(
not(feature = "generate-bindings"),
target_arch = "arm",
target_os = "linux"
))]
include!(concat!(
env!("CARGO_MANIFEST_DIR"),
"/src/bindings/arm-unknown-linux-gnueabi.rs"
));
#[cfg(all(
not(feature = "generate-bindings"),
target_arch = "x86_64",
target_os = "macos"
))]
include!(concat!(
env!("CARGO_MANIFEST_DIR"),
"/src/bindings/x86_64-unknown-darwin.rs"
));
#[cfg(feature = "generate-bindings")]
include!(concat!(env!("OUT_DIR"), "/tss_esapi_bindings.rs"));