c++ question
hello all,
i am learning c++ and taking lessons in school
i was lookin at source code for some hacks and i saw: *(DWORD*).
please explain what that does. i searched google and found nothing at all about that.
Typically it represents a double word. On a 16-bit machine a WORD would be 16 bits, on a 32-bit machine, it would be 32 bits.
used in dll injections. you dont have to use dword you can use *(int*) or *(float*) etc...