[Solved] how to control one program from other

[ad_1] Well, your starting sentence was: “I have seen trainers for games which can set health of player and spawn cars etc. I want to make something similar to that.” Here’s a very nice reference code that does what you talked about in C++ http://www.codeproject.com/Articles/7468/Game-Wizard First strengthen your C++ skills and then study what he … Read more

[Solved] In a remote thread, how do I call functions whose parameters contain pointers? [closed]

[ad_1] The immediate problem in this code is that you’re storing pointers to the string parameters in your record. Those pointers are addresses in your main process; they are not valid in the target process. You should store those values in fixed-size arrays in your record, just like you’re already doing with the module and … Read more