列出 C++ 中的类的文件夹使用 DIA SDK 的 PDB
我正在使用 C# 开发一个分析工具。它使用DIA SDK分析C++ PDB文件并列出所有类、函数、字段等。
我想知道类的文件夹名称并明智地列出类、函数等文件夹。我已经看到了 IDiaSymbol 上的所有属性/函数,但在类的文件夹名称上找不到任何内容。
如何使用 DIA SDK 获取 C++ PDB 中类的文件夹名称?
谢谢
Raghu
I am working on a profiling tool in C#. It analyses C++ PDB files using DIA SDK and lists all classes, functions, fields etc.
I would like to know the folder names of the classes and list classes, functions etc folder wise. I have seen all the properties/functions on IDiaSymbol, but could not find anything on the folder name of the class.
How to get folder name of the classes in C++ PDB using DIA SDK?
Thanks
Raghu
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它是包含您的类的 .cpp 源文件的文件夹名称吗? IDiaSourceFile.get_filename() 确实返回源文件的完整路径名。这是你所追求的吗?
Is it the folder name containing the .cpp source file containing your classes? IDiaSourceFile.get_filename() does return the full pathname of your source file. Is it what you're after?