mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-10 19:21:40 +01:00
* add podetached. Follow up to mantis @32055 due to regression, see
https://forum.lazarus.freepascal.org/index.php/topic,49631.0 git-svn-id: trunk@45228 -
This commit is contained in:
parent
187cc46b32
commit
4a51d0600d
@ -26,7 +26,7 @@ Type
|
||||
poUsePipes,poStderrToOutPut,
|
||||
poNoConsole,poNewConsole,
|
||||
poDefaultErrorMode,poNewProcessGroup,
|
||||
poDebugProcess,poDebugOnlyThisProcess,
|
||||
poDebugProcess,poDebugOnlyThisProcess,poDetached,
|
||||
poPassInput,poRunIdle);
|
||||
|
||||
TShowWindowOptions = (swoNone,swoHIDE,swoMaximize,swoMinimize,swoRestore,swoShow,
|
||||
|
||||
@ -82,6 +82,9 @@ begin
|
||||
Result:=Result or DEBUG_ONLY_THIS_PROCESS;
|
||||
if poDefaultErrorMode in Options Then
|
||||
Result:=Result or CREATE_DEFAULT_ERROR_MODE;
|
||||
if poDetached in Options Then
|
||||
Result:=Result or DETACHED_PROCESS;
|
||||
|
||||
result:=result or PriorityConstants[FProcessPriority];
|
||||
end;
|
||||
end;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user