Pregunta

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

¿Fue útil?

Solución

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

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top