1
2
3
4
5
6
7
8
9
#[cfg(not(feature = "bindgen"))]
mod ffi_docs_only;
#[cfg(not(feature = "bindgen"))]
pub use ffi_docs_only::*;

#[cfg(feature = "bindgen")]
mod ffi;
#[cfg(feature = "bindgen")]
pub use ffi::*;