vfio_bindings/
lib.rs

1// Copyright 2019 Intel Corporation. All Rights Reserved.
2// SPDX-License-Identifier: (BSD-3-Clause OR Apache-2.0)
3
4#[cfg(feature = "fam-wrappers")]
5#[macro_use]
6extern crate vmm_sys_util;
7
8#[cfg(feature = "fam-wrappers")]
9mod fam_wrappers;
10
11mod vfio_bindings;
12
13pub mod bindings {
14    pub use super::vfio_bindings::*;
15
16    #[cfg(feature = "fam-wrappers")]
17    pub use super::fam_wrappers::*;
18}