firehazard 0.0.0-2022-09-10

Unopinionated low level API bindings focused on soundness, safety, and stronger types over raw FFI.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! I/O APIs ([pipe]((https://docs.microsoft.com/en-us/windows/win32/ipc/pipes)) handles and fns)
//!
//! ### References
//! *   <https://docs.microsoft.com/en-us/windows/win32/ipc/pipes>
//! *   <https://docs.microsoft.com/en-us/windows/win32/ipc/multithreaded-pipe-server>

#[cfg(    std )] pub use std::io::{Read, Write, Seek, Error, ErrorKind, Result};
#[cfg(not(std))] mod io_not_std;
#[cfg(not(std))] pub use io_not_std::*;



#[path = "io_funcs.rs"]             pub(crate) mod funcs;       pub use funcs::*;
mod io_counters;                    pub use io_counters::*;
mod io_handles;                     pub use io_handles::*;