unit uMacOSSpawn;
interface
uses
System.SysUtils
, System.Classes
, Macapi.Foundation
, Macapi.ObjectiveC
, Macapi.ObjCRuntime
, Macapi.Helpers
;
type
TProcessSpawn = class(TOCLocal)
private
fTask: NSTask;
fInputPipe: NSPipe;
fOutputPipe: NSPipe;
fErrorPipe: NS...