1#![allow(non_upper_case_globals)]
8#![allow(non_camel_case_types)]
9#![allow(non_snake_case)]
10
11#[cfg(any(target_os = "android", target_os = "linux"))]
12pub mod vhost;
13#[cfg(any(target_os = "android", target_os = "linux"))]
14pub mod vhost_ioctl;
15pub mod virtio_config;
16pub mod virtio_fs;
17pub mod virtio_ids;
18pub mod virtio_mmio;
19pub mod virtio_net;
20pub mod virtio_ring;
21pub mod virtio_scsi;
22pub mod virtio_vsock;
23
24#[cfg(any(target_os = "android", target_os = "linux"))]
25pub use crate::vhost_ioctl::*;
26pub use crate::virtio_mmio::*;