查找与 C++ 中的方法相匹配的参数dll的
好的,所以我可以使用 dumpbin.exe /exports library.dll 来查找 dll 中的所有方法。
...但是我如何找出要传递给它们的参数?当然没有头文件。
Ok, so I can use dumpbin.exe /exports library.dll to find all methods in the dll.
...but how do I find out which arguments to pass into them? Without a header file of course.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于通常的 C 风格导出(例如,Windows API DLL):您不能。此信息不存储在 DLL 中,并且在编译后不可避免地会丢失(除非您有标头或调试符号)。
另一方面,C++ 导出将它们的签名存储为损坏的函数名称的一部分,您可以使用 Dependency Walker 或类似工具查看它们,或者使用 UNDNAME 工具 或 DUMPBIN 的
/SYMBOLS
选项。For the usual C-style exports (e.g., Windows API DLLs): You can't. This information is not stored in the DLL and is inevitably lost after compilation (unless you have the headers or debuging symbols).
C++ exports, on the other hand, store their signature as part of the mangled function name and you can view them using Dependency Walker or similar tools, or demangle them manually using the UNDNAME tool or DUMPBIN's
/SYMBOLS
option.