coolprop_sys/
bindings.rs

1//! Raw FFI bindings to `CoolProp`.
2//!
3//! # See Also
4//!
5//! - [`CoolPropLib.h` Reference](https://coolprop.org/_static/doxygen/html/_cool_prop_lib_8h.html)
6
7#![allow(
8    dead_code,
9    missing_docs,
10    non_camel_case_types,
11    non_snake_case,
12    non_upper_case_globals,
13    unsafe_op_in_unsafe_fn,
14    clippy::all,
15    clippy::pedantic
16)]
17
18#[cfg(feature = "regen-bindings")]
19include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
20
21#[cfg(not(feature = "regen-bindings"))]
22include!("bindings_generated.rs");