Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想要从 DLL 导出的函数名称列表(按名称和序号)。我使用导出目录表获得了函数名称(按名称导出),但我无法检索按序号导出的导出函数列表。
请帮我找回它。我也试过那个dll的.lib,还有,显示NONAME。在此先感谢传说
如果您知道 dll 名称,您可以通过许多工具(pe explorer,CFF Explorer)查看,这里所有导出的函数名称都可以用序号查看。微软的另一种方式(dumpbin.exe)它是一个命令行工具..它还列出取出所有导出的 fn 名称
如果您安装了 mingw32,只需运行
nm.exe your_dll
其中 your_dll 是您想要获取序数和导出的 dll。nm.exe 应该在 mingw32 安装的 bin 目录中。