1 2 3 4 5 6 7 8 9 10 11 12
#[cfg(target_os = "windows")] extern crate windows; #[cfg(target_os = "windows")] mod process; #[cfg(target_os = "windows")] mod module; #[cfg(target_os = "windows")] pub use process::Process; #[cfg(target_os = "windows")] pub use module::Module;