Ok, what i'm wanting to do is read a variables from another process
( not modify it ....just read it and output it)
so e.g.
test.exe:
int main(){
int test = 1;
return 0;
}
how would i write a program to read from the process (test.exe) and check what value "test" holds in memory and output it somehow on my application...
I've heard you can do this with DLL Injection seems pretty complexed for me to do since i only know basics in C++
Thanks for reading.... Any help would be much appreciated
PoZ