wdext 0.1.0

A DbgEng wrapper framework
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// SPDX-FileCopyrightText: 2026 takubokudori
// SPDX-License-Identifier: MIT OR Apache-2.0
use crate::{dbgeng::WinResult, *};
use windows::Win32::System::Diagnostics::Debug::Extensions::IDebugHostContext;

impl_debug_interface!(DebugHostContext, DebugHostContextRef, IDebugHostContext);

// IDebugHostContext
impl DebugHostContext {
    pub fn is_equal_to(&self, context: &DebugHostContext) -> WinResult<bool> {
        unsafe { self.0.IsEqualTo(context.as_raw()) }
    }
}

// IDebugHostContext2
impl DebugHostContext {
    // GetAddressSpaceRelation
}