Post by bobIs it possible to enumerate object files for a given binary + PDB.
You can enumerate symbols, source files, what about object files?
I don't know how to do it with DbgHelp (it looks like it is not possible),
but you can do it with DIA.
There is Compiland symbol (child of the global scope Exe symbol),
which contains the needed information:
http://msdn.microsoft.com/library/en-us/diasdk/html/vsgrfCompiland.asp
You can start with Dia2Dump sample (DumpLex function in particular,
plus Dump function until the place where it obtains the "global scope" symbol)
http://msdn.microsoft.com/library/en-us/diasdk/html/vssamSample.asp
Regards,
Oleg