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
//! Debugger APIs from [debugapi.h](https://docs.microsoft.com/en-us/windows/win32/api/debugapi/), <strike>dbgeng.h</strike> (not yet)

mod debug_event;                    pub use debug_event::*;

pub use funcs::*;
pub(crate) mod funcs {
    mod debugapi_h;                 pub use debugapi_h::*;
    mod memoryapi_h;                pub use memoryapi_h::*;
}