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
__declspec(dllexport)
– Examinee