Hello, I've made a simple poker program that takes statistical input from the player and plugs these values into a specific algorithm to determine if the player should fold,call or raise
The thing is, there is another program that automatically gathers these statistics without needing to calculate by hand (Holdem Indicator).
I would like my program to access this programs memory, so I can gather it's values and input them in my algorithm automatically in real time.
Trying to access memory not owned by your process is generally forbidden by the operating system. I'm not sure if there are any reliable work arounds, and wouldn't really recommend that method. Does the program you want to use have a DLL or API?