xmpd/src/constants.rs
2024-09-22 02:16:18 +03:00

16 lines
270 B
Rust

#[cfg(target_family="windows")]
mod _m {
pub const PATH_VAR_SEP: &str = ";";
pub const EXEC_EXT: &str = "exe";
}
#[cfg(target_family="unix")]
mod _m {
pub const PATH_VAR_SEP: &str = ":";
pub const EXEC_EXT: &str = "";
}
pub use _m::*;