I'm translating some Windows header files to Delphi. In order to verify alignment of related C structs, I need to dump certain PDB files to see the associated type information. To do this, I tried to use PdbXtract, but this tool asks me to select a PDB file to inspect. How do I know which PDB file contains the desired struct definition?
|
Use the strings.exe command line utility from SysInternals (now MS). I ran the following
|
|||
|
|
|
After investigating PDB files using hex editor, I figure out to know which PDB file contains the desired struct definition, by using a grep-like tool to search for PDB filenames containing the following regex pattern:
|
||||
|
|
WinNT.h. I just hope there is an easier way to do this. – Astaroth Nov 29 '12 at 16:36sizeofis sufficient. Incidentally, the PDB of that program would contain the information you need, too. – Rob Kennedy Nov 29 '12 at 16:43WinNT.hstructs introduced in newer versions of Windows such as TOKEN_USER_CLAIMS etc. which was not translated by Embarcadero. – Astaroth Nov 29 '12 at 16:51