Can the launchApplcation call be usedv in a non-Cocoa app?
I need the equivalent of Windows spawnl(), which executes a application from within another. Is there an OSX equivalent to spawn() or exec()?
I could use the system() call, but I need to add command line arguments to it.
Thanks!
Bill
You do have the ability to fork and exec other processes.
For example: