wdext 0.1.0

A DbgEng wrapper framework
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-FileCopyrightText: 2026 takubokudori
// SPDX-License-Identifier: MIT OR Apache-2.0
//! A wrapper around the Time Travel Debugging API.
//!
//! Work-in-progress
//!
//! # References
//!
//! - [microsoft/WinDbg-Samples](https://github.com/microsoft/WinDbg-Samples/tree/master/TTD)
//! - [Microsoft.TimeTravelDebugging.Apis 0.9.5](https://www.nuget.org/packages/Microsoft.TimeTravelDebugging.Apis/0.9.5)

pub mod cursor;
pub mod memory;
pub mod raw;
pub mod replay_engine;
pub mod thread;