GetProcAddress is a function in the Windows API for getting addresses of functions in dynamically loaded libraries
Questions tagged [getprocaddress]
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…