Creation flags for the execute() function¶
EXEC_SUSPENDED |
Start in suspended state. |
EXEC_NORMAL_PRIORITY |
Run at normal priority. |
EXEC_IDLE_PRIORITY |
Run only in system idle time. |
EXEC_HIGH_PRIORITY |
Run at high priority. |
EXEC_REALTIME_PRIORITY |
Run at real time priority. |
EXEC_NEW_PROCESS_GROUP |
Process is new group leader. |
EXEC_DEFAULT_ERROR_MODE |
Don’t inherit parent’s error mode. |
The following flags are only relevant if the child process is a console process. EXEC_DETACHED and EXEC_NEW_CONSOLE cannot be used together.
EXEC_DETACHED |
No access to parent console. |
EXEC_NEW_CONSOLE |
Start in new console window. |
EXEC_NO_WINDOW |
Run without a console window, |
Creation flags for use with the execute() function, sent as an argument to the CreateProcess() function (Windows only). Multiple flags are combined using the “|” operator.
RELATED TOPICS |