How can I perform the equivalent of shellexecute() in Lazarus for a Mac?
|
1
|
|
|
|
|
|
{ Here is code to do it. Use the TProcess object! }
|
|||
|
|
|
|
I don't know whether Lazarus libraries do already have this functionality wrapped, but if not you could write a conditionally compiled version of ShellExecute() using the info in the Launch Services Programming Guide. |
||
|
|
|
|
Since OS X is simply a descendant of BSD Unix, you can use fork() or exec(), whichever is appropriate for your application, IIRC. See the man pages on either of those for more info. EDITED: Fixed typo to read "BSD Unix" instead of "Linux" and apologized in comments for fat fingers. :-) |
||||||||
|
|
|
I've successfully used I stumbled across |
|||
|
|
|
|
fork hurts on Mac. BSDs use vfork, not fork. |
||
|
|
