I have a DLL from a game I'm importing into a windows32 application, I've successfully loaded it and have called quite a few functions. However I'm facing a problem with a certain function I need to use needs a structure passed to it.
It seems when I disassemble the DLL I can see the structures and the data types in the structure, however how would I use this structure?
AFAIK GetProcAddress wouldnt work?
I'm looking for a way to use this struct.
*(_DWORD *)this = tagRX_GLOBAL___vftable_;
RX__g_pGlobal = (struct tagRX_GLOBAL *)this;
I would recommend you to add a simple function that will return you an address of the struct. Functions are fine with
GetProcAddress
.