Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我刚刚下载了 WIN7 RTM 的符号包,但在我的 windbg 中它仍然可以找到 RegQueryValueEx() 的符号信息。
从windbg信息中它说pdb文件中没有提供一些OS dll符号,但是我怎么知道哪些没有提供,哪些提供?
具体来说,我正在搜索的符号是 RegQueryValueEx();
谢谢。斌
lm您可以使用该命令查看已加载的模块和相应的符号。但是,由于 WinDbg 在需要符号之前不会加载它们,因此您可以执行 a.reload /f来强制加载所有符号。
lm
.reload /f
如果给定模块的输出显示lm(pdb 符号),则您拥有该模块的正确公共符号。