有哪些方法可以找到DLL内部函数的描述?
我的 DLL 没有文档,也没有可用函数列表。 有哪些方法可以找到DLL内部函数的描述?我尝试使用 dllexp.exe,但它只显示函数名称。我如何获得函数的参数?
I have DLL without documentations and without list of available functions.
What ways can found the description of functions inside DLL? I tried to use dllexp.exe, but it showed me only functions names. How I can to get an arguments of functions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Dependency Walker 也应该有所帮助:
http://www.dependencywalker.com/
Also Dependency Walker should help:
http://www.dependencywalker.com/
您可以使用 Microsoft Visual Studio Intellisense 。它向您显示每个函数描述(如果存在)、参数(也所有覆盖)及其类型。
you can use Microsoft visual studio intellisense . it shows you each function description(if exist) ,argument(all overrides too) and their types.
您还可以使用 DLL Export Viewer 或商业工具 PE.Explorer。两者都会向您展示有关图书馆的精彩概述和更多信息。
You can also use DLL Export Viewer or the commercial tool PE.Explorer. Both will show you a nice overview and some more information about the library.