jonathanmb
Technical User
This is my first attempt at something like this, and I'd much appreciate any tips on how I should approach the problem.
I'd like to have a main app basically controll everything. This app would spawn children processes. The parent would require no user intervention; I want it to operate only on what is passed to and from the children. When the parent sends information to the child, the user would do something with that information using the child process, and then the child would return a response to the parent when the user is finished. The process would continue until the parent decides to end it all.
Winsock came to mind, but that seems like a big waste. I'm not really sure how to make two applications communicate with each other that reside on the same machine. I guess that's what I'm really trying to figure out with all of this.
-Jonathan
I'd like to have a main app basically controll everything. This app would spawn children processes. The parent would require no user intervention; I want it to operate only on what is passed to and from the children. When the parent sends information to the child, the user would do something with that information using the child process, and then the child would return a response to the parent when the user is finished. The process would continue until the parent decides to end it all.
Winsock came to mind, but that seems like a big waste. I'm not really sure how to make two applications communicate with each other that reside on the same machine. I guess that's what I'm really trying to figure out with all of this.
-Jonathan