Questions tagged [getprocaddress]

GetProcAddress is a function in the Windows API for getting addresses of functions in dynamically loaded libraries

106 questions
-3
votes
1 answer

Get name of object imported from DLL

I have a pointer to some object that was loaded from DLL using GetProcAddress: CSomeClass* pSomeClass; pSomeClass = (CSomeClass*)GetProcAddress(someDLLinstance, "SomeUnknownName"); I cannot modify the code above, but I need to obtain…
1 2 3 4 5 6 7
8