Hi all,
I've been trying but can't seem to work this out, basically I want the following DWORD to be put into an unsigned long in C++.
into this variable
Doesn't work and neither do all the other things I tried so I could really use some help.
Thanks in advance,
I've been trying but can't seem to work this out, basically I want the following DWORD to be put into an unsigned long in C++.
Code:
dword ptr ss:[ebp+0x10]
Code:
unsigned long itemx;
Code:
__asm mov itemx, dword ptr ss:[ebp+0x10]
Thanks in advance,