是否有任何用于 Mozilla 对象(例如nsString
)的 Visual Studio 调试器可视化工具?我正在寻找类似boost 可视化工具的东西。
问问题
98 次
1 回答
1
Debugging Mozilla on Windows FAQ里面有一些技巧就可以了。将以下条目添加到您的AUTOEXP.DAT
以改进 Mozilla 对象的可视化。
;; Mozilla (1.7beta and later)
nsAutoString=<mData,su>
nsString=<mData,su>
nsCString=<mData,s>
nsCAutoString=<mData,s>
nsRect=x=<x,d> y=<y,d> width=<width,d>; height=<height,d>
nsStaticAtomWrapper=<mStaticAtom->mString,s>
nsIAtom=<mString,su>
; the following are not necessary in vc8
nsCOMPtr<*>=<mRawPtr,x>
nsRefPtr=<mRawPtr,x>
nsAutoPtr=<mRawPtr,x>
于 2011-09-15T10:18:56.140 回答