gpt4 book ai didi

c++ - ReadDebuggeeMemoryEx 读取调试对象失败

转载 作者:行者123 更新时间:2023-11-28 07:52:04 26 4
gpt4 key购买 nike

我已经为我的 VisualStuido2010 编写了一个调试器扩展来显示我的类类型。我根据 Microsoft 提供的 EEAddin 示例编写我的代码库。但是我调用 ReadDebuggeeMemoryEx 失败了。

我找不到任何失败的原因。 GetLastError() 返回 0。

ObjectId objid;
DWORD nGot;
int state = E_FAIL;
if ( pHelper->ReadDebuggeeMemoryEx(pHelper, pHelper->GetRealAddress(pHelper), sizeof(ObjectId), &objid, &nGot) )
{
}else { log("Fail ReadDebuggeeMemoryEx %d\n", GetLastError());}

最佳答案

函数 ReadDebuggeeMemoryEx(...) 返回一个 HRESULT 而不是 BOOL
尝试类似的东西:

if (pHelper->ReadDebuggeeMemoryEx(...) == S_OK) {
// good
} else {
// bad
}

关于c++ - ReadDebuggeeMemoryEx 读取调试对象失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13569896/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com