Questions tagged [dia-sdk]

The Microsoft Debug Interface Access Software Development Kit (DIA SDK) provides access to debug information stored in program database (.pdb) files generated by Microsoft postcompiler tools.

The Microsoft Debug Interface Access Software Development Kit (DIA SDK) provides access to debug information stored in program database (.pdb) files generated by Microsoft postcompiler tools. Because the format of the .pdb file generated by the postcompiler tools undergoes constant revision, exposing the format is impractical. Using the DIA API, you can develop applications that search for and browse debug information stored in a .pdb file. Such applications could, for example, report stack trace-back information and analyze performance data.

Reference:

32 questions
0
votes
2 answers

DIA x64 & LocalFree

I'm using DIA Sdk to extract some information from PDB files. I create the non-com DiaSourceAlt object so I must use LocalFree to free strings. The following piece of code works fine in x86 but, on x64, the LocalFree call corrupts the…
Mauro H. Leggieri
  • 1,084
  • 11
  • 25
0
votes
1 answer

No filenames in pdb program database

I have a .pdb program database from a C++ application compiled in debug on Windows VS2005. I use the DIA SDK to find function names but I can't seem to retrieve the filenames for the symbols. Is there some switch I need to turn on? Does this work?!
Nick
  • 27,566
  • 12
  • 60
  • 72
1 2
3