Hello, I've wanted to read another programs variables by using their memory address. In a tutorial I read it only demonstrated how to read a programs memory by creating an unsigned int with the address value. Like:
DWORD Test = 0x72G7H...
How would I create the variable earlier on
Oh, and what I'm using looks like this:
DWORD Test = 0x72G7H...
How would I create the variable earlier on
DWORD Testwithout assigning a value to it, then later asking the user to input what Test should contain. Although integers will not hold letters when entered. How can I do this?
Oh, and what I'm using looks like this:
ReadProcessMemory(phandle,(void*)address,&value,sizeof(value),0)