nvngx_sys/
lib.rs

1//! The `nvngx-sys` is a crate carefully wrapping the NVIDIA NGX library.
2
3#![allow(non_upper_case_globals)]
4#![allow(non_camel_case_types)]
5#![allow(non_snake_case)]
6#![allow(clippy::all)]
7
8include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
9
10pub mod error;
11pub use error::*;