bugsalot 0.2.2

Debugging macros and APIs for shipping stable codebases.
Documentation
1
2
3
4
5
6
7
8
pub type BOOL = i32;

#[link(name = "kernel32")]
extern "system" {
    pub fn DebugBreak();
    pub fn IsDebuggerPresent() -> BOOL;
    pub fn OutputDebugStringA(lpOutputString: *const u8);
}