Possible Duplicate:
Best way to do interprocess communication on Mac OS X
Is there any way that I could share information between two separate applications on OSX?
Here is what I am aiming to achieve:
- Develop an add-on for a program, which will be coded in pure C.
- Develop a stand-alone application (cocoa obj-c) that will communicate with my add-on.
My application would be where I implement my custom data model and user interface, what I then want to do is share data to the add-on for me to work with - essentially setting up a parasite program that will use the other program for some things, and my program for others.
Sorry if that is a little vague, all I really want to know is: would this be possible, should I do this (is it a programming no-go?), and what kind of way would be the right way to go about this if it is possible?
I would like to be able to both send and retrieve data to and from my stand alone application in real time.