1 2 3 4 5 6 7 8
#[cfg(windows)] mod windows; #[cfg(windows)] pub use self::windows::{xch, PlatformError}; #[cfg(not(windows))] compile_error!("libxch not supported on this platform!");