[Overview][Types][Classes][Procedures and functions][Variables][Index] |
Set of TProcessOption.
Source position: process.pp line 39
type TProcessOptions = set of ( |
||
poRunSuspended, |
|
Start the process in suspended state. |
poWaitOnExit, |
|
Wait for the process to terminate before returning. |
poUsePipes, |
|
Use pipes to redirect standard input and output. |
poStderrToOutPut, |
|
Redirect standard error to the standard output stream. |
poNoConsole, |
|
Do not allow access to the console window for the process (Win32 only) |
poNewConsole, |
|
Start a new console window for the process (Win32 only) |
poDefaultErrorMode, |
|
Use default error handling. |
poNewProcessGroup, |
|
Start the process in a new process group (Win32 only) |
poDebugProcess, |
|
Allow debugging of the process (Win32 only) |
poDebugOnlyThisProcess |
|
Do not follow processes started by this process (Win32 only) |
); |