Tagged Questions

1
vote
1answer
159 views

How can I call a exported function using ordinal number

If a dll exports some functions and the functions have only ordinal numbers, how can I call the functions? Give me a short example please.
1
vote
2answers
1k views

How to get the function name from the ordinal number in a COM dll

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). ordinal hint ...