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.
我们都知道我们可以为 .obj 文件使用 dumpbin 来显示所有符号,包括外部符号。
dumpbin /symbols ExternCTest.ob 00F 00000000 UNDEF notype () External | ?foo@@YAHH@Z (int __cdecl foo(int))
但我想知道如何为 DLL 做到这一点?我也尝试过 dumpbin /exports 以及dependency walker,但它没有显示外部符号。
我应该怎么做?
谢谢
您正在寻找的命令行参数是/imports. 这将显示 DLL 引用的所有外部符号。
/imports