nvidia_video_codec_sdk/sys/
mod.rs

1//! Auto-generated bindings to NVIDIA Video Codec SDK.
2//!
3//! The bindings were generated using [bindgen](https://github.com/rust-lang/rust-bindgen)
4//! using the scripts `sys/linux_sys/bindgen.sh` and
5//! `sys/windows_sys/bindgen.ps1` for the respective operating system.
6
7mod guid;
8mod version;
9
10#[allow(warnings)]
11#[rustfmt::skip]
12#[cfg(target_os = "linux")]
13mod linux_sys;
14#[cfg(target_os = "linux")]
15pub use linux_sys::*;
16
17#[allow(warnings)]
18#[rustfmt::skip]
19#[cfg(target_os = "windows")]
20mod windows_sys;
21#[cfg(target_os = "windows")]
22pub use windows_sys::*;