1 2 3 4 5 6 7 8 9 10
#![cfg(windows)] use std::io::Error; pub type WindowsResult = Result<(), Error>; #[macro_use] pub mod sender; mod util; pub mod listener; pub mod structs;