我们如何使用 C 或 C++ 从 dll 读取导出表?
可能的重复:
Win32 API 枚举 dll 导出函数?
我们如何读取导出使用 C 或 C++ 从 dll 中获取表?
Possible Duplicate:
Win32 API to enumerate dll export functions?
How do we read the exports table from a dll using C or C++?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
快速而肮脏的方法是调用 Dumpbin /导出 DLL,并将输出解析为您想要的形式。您的要求比这更复杂吗?
The quick and dirty way would be to invoke Dumpbin /Exports on the DLL, and parse the output into the form you want. Are your requirements more complex than this?