Skip to main content

idax_sys/
lib.rs

1//! Raw FFI bindings to the idax C++ IDA SDK wrapper library.
2//!
3//! This crate provides unsafe `extern "C"` function declarations generated
4//! by bindgen from the idax C shim layer. Use the `idax` crate for safe,
5//! idiomatic Rust bindings.
6
7#![allow(non_upper_case_globals)]
8#![allow(non_camel_case_types)]
9#![allow(non_snake_case)]
10#![allow(clippy::all)]
11
12include!(concat!(env!("OUT_DIR"), "/bindings.rs"));