http://qs1969.pair.com?node_id=55257


in reply to How do I find out the RAM memory address of a var in a program running on WIN ?

You may may interested in some shared memory, in that case where you can store this variable that you want to change. Try IPC::Shareable or an equivalent Win32 module in congruence with an intelligent semaphore or mutex lock system. If you're interested in speed, you'll be glad to hear that shared memory is the fastest form of IPC available.

You may also try a pseudo client-server architecture by grabbing info on pipes. In that case, the address is irrelevant (as it should be) and you an copy the info in the pipe's buffer directly to the variable that you wanted to alter "remotely". Then you can close the pipe or wait for another "change value" instruction.

AgentM Systems nor Nasca Enterprises nor Bone::Easy nor Macperl is responsible for the comments made by AgentM. Remember, you can build any logical system with NOR.
  • Comment on Re: How do I find out the RAM memory address of a var in a program running on WIN ?