Bin Chen
Bin Chen

Reputation: 63329

The symbol packaged downloaded from MS site

I just downloaded the symbol package for WIN7 RTM but in my windbg it still find the symbol information for RegQueryValueEx().

From the windbg information it said some of the OS dll symbol is not provided in the pdb file, but how can I know which ones are not provided and which one does?

Specifically the symbol I am searching for is RegQueryValueEx();

Thanks. Bin

Upvotes: 0

Views: 248

Answers (1)

Brian Rasmussen
Brian Rasmussen

Reputation: 116411

You can watch your loaded modules and corresponding symbols using the lm command. However, since WinDbg doesn't load symbols until they are needed, you can do a .reload /f to force load of all symbols.

If the output from lm says (pdb symbols) for a given module, you have the correct public symbols for that module.

Upvotes: 1

Related Questions