列出 C++ 中的类的文件夹使用 DIA SDK 的 PDB

发布于 2024-10-11 11:21:18 字数 277 浏览 2 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寄离 2024-10-18 11:21:18

它是包含您的类的 .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?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文