authenticode_parser_sys/lib.rs
1//! Native bindings for the
2//! [authenticode parser library](https://github.com/avast/authenticode-parser) from Avast.
3//!
4//! For Rust bindings on top of those types, see the
5//! [authenticode-parser crate](https://crates.io/cartes/authenticode-parser).
6
7#![allow(non_upper_case_globals)]
8#![allow(non_camel_case_types)]
9#![allow(non_snake_case)]
10
11#[cfg(feature = "bindgen")]
12include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
13
14#[cfg(not(feature = "bindgen"))]
15pub mod bindings;
16#[cfg(not(feature = "bindgen"))]
17pub use bindings::*;