oden/third-party/vendor/widestring/src/platform/mod.rs
2024-03-08 11:03:01 -08:00

9 lines
163 B
Rust

#[cfg(windows)]
mod windows;
#[cfg(windows)]
pub(crate) use self::windows::*;
#[cfg(not(windows))]
mod other;
#[cfg(not(windows))]
pub(crate) use self::other::*;