windbgr-mcp 0.1.0

MCP server for Windows debugging
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! cdb.exe integration layer: session actor, manager and break control.

pub mod cli;
pub mod constants;
pub mod control;
pub mod manager;
pub mod prompt;
pub mod ring;
pub mod session;

pub use manager::SessionManager;
pub use session::{
    AttachOptions, CommandOutcome, ControlAction, LaunchOptions, SessionKind, SessionState,
    SessionStatus, SessionSummary, StopMode,
};