nwep-rs 0.1.8

Rust bindings for the NWEP (WEB/1) protocol library
Documentation
1
2
3
4
5
6
7
8
9
10
// Raw FFI bindings to the nwep C library, generated by bindgen.
// This module is intentionally crate-private; the public API is exposed through
// the typed wrappers in the other modules.
#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, dead_code, clippy::all)]

#[cfg(feature = "regenerate-bindings")]
include!(concat!(env!("OUT_DIR"), "/bindings.rs"));

#[cfg(not(feature = "regenerate-bindings"))]
include!("bindings.rs");