如此处所述: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
)
是否有可能以某种方式获取变量的地址,还有它的名称,也许是源文件和行调用器在调用此函数时的位置?