Hi, first of all sorry if this isn't exactly C++ related, but didn't know where it would be more appropriate.
I am trying to get actual function names from their ordinal numbers from a COM dll. I tried using dumpbin.exe but it only returns [NONAME] for each ordinal (except the first few):
The directory containing the .dll file doesn't contain any other files (*.tlb, *.lib).
I also tried using OLE/COM object viewer, but didn't find the relation between them.
Could someone tell me how to get a list of these? Or at least the name of a specific ordinal using registry or something?
I am trying to get actual function names from their ordinal numbers from a COM dll. I tried using dumpbin.exe but it only returns [NONAME] for each ordinal (except the first few):
Code:
ordinal hint RVA name 21 0 00002439 DllCanUnloadNow 25 1 00007F41 DllGetClassObject 116 2 0000539C DllMain 138 3 00008633 DllRegisterServer 176 4 00008640 DllUnregisterServer 1 0009152E [NONAME] 2 00154CA7 [NONAME] 3 00154C0B [NONAME] 4 000140C9 [NONAME] ...
I also tried using OLE/COM object viewer, but didn't find the relation between them.
Could someone tell me how to get a list of these? Or at least the name of a specific ordinal using registry or something?
Comment