使用$ ADDIN函数中的autoexp.dat访问源名称,行号和变量名称?

时间:2015-10-28 15:55:29

标签: c++ visual-studio-2010 autoexp.dat

如此处所述:MSDN article about autoexp.dat and $ADDIN,我创建了DLL,其函数表示调试时我的类型的数据。

我的库中的这个功能允许:

HRESULT WINAPI CustomViewer(
DWORD dwAddress,       // low 32-bits of address
DEBUGHELPER *pHelper,  // callback pointer to access helper functions
int nBase,             // decimal or hex
BOOL bIgnore,          // not used
char *pResult,         // where the result needs to go
size_t max,            // how large the above buffer is
DWORD dwReserved       // always pass zero
)

是否有可能以某种方式获取变量的地址,还有它的名称,也许是源文件和行调用器在调用此函数时的位置?

0 个答案:

没有答案