blob: 62f80ee0247937a1dd520bebe294e3e5dee1461c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#![windows_subsystem = "windows"]
#[cfg(target_os = "windows")]
#[path = "windows.rs"]
mod imp;
#[cfg(not(target_os = "windows"))]
mod imp {
pub fn main() {}
}
pub use imp::*;
|