Question

We all know we could use dumpbin for .obj file to show all the symbols including external ones.

dumpbin /symbols ExternCTest.ob
00F 00000000 UNDEF  notype ()    External     | ?foo@@YAHH@Z (int __cdecl foo(int))

But I am wondering how could I do this for DLL ? I have also tried dumpbin /exports as well as dependency walker but it's NOT showing external symbols.

How should I do it ?

Thanks

Was it helpful?

Solution

The command line argument you are looking for is /imports. This will show all external symbols referenced by the DLL.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top