Files
One-KVM/src/audio/device.rs
2026-05-24 09:44:41 +00:00

14 lines
222 B
Rust

#[cfg(all(unix, not(feature = "android")))]
#[path = "device_linux.rs"]
mod imp;
#[cfg(feature = "android")]
#[path = "device_android.rs"]
mod imp;
#[cfg(windows)]
#[path = "device_windows.rs"]
mod imp;
pub use imp::*;