cfg_if::cfg_if! {
if #[cfg(unix)] {
pub const EINVAL: i32 = hierr::EINVAL;
pub const ETIMEDOUT: i32 = hierr::ETIMEDOUT;
pub const ECANCELED: i32 = hierr::ECANCELED;
} else if #[cfg(windows)] {
pub const EINVAL: i32 = hierr::WSA_INVALID_PARAMETER;
pub const ETIMEDOUT: i32 = hierr::WSATIMEDOUT;
pub const ECANCELED: i32 = hierr::WSACANCELLED;
}
}