irox_safe_windows/lib.rs
1// SPDX-License-Identifier: MIT
2// Copyright 2023 IROX Contributors
3
4//!
5//! Safe(r) wrappers around the unsafe windows API functions.
6//!
7
8#![allow(non_snake_case)]
9extern crate core;
10
11#[cfg(windows)]
12pub mod credentials;
13pub mod error;
14#[cfg(windows)]
15pub mod fs;
16#[cfg(windows)]
17pub mod net;
18#[cfg(windows)]
19pub mod net_if;
20#[cfg(windows)]
21pub mod priority;
22#[cfg(windows)]
23pub mod registry;
24#[cfg(windows)]
25pub mod smbios;
26#[cfg(windows)]
27pub mod system;
28#[cfg(windows)]
29pub mod term;