Navigation
API > API/Runtime > API/Runtime/Core
| Name | ECommandLineArgumentFlags |
| Type | enum |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/CommandLine.h |
| Include Path | #include "Misc/CommandLine.h" |
Syntax
enum ECommandLineArgumentFlags
{
None = 0x0000,
EditorContext = 0x0001,
ClientContext = 0x0002,
ServerContext = 0x0004,
CommandletContext = 0x0008,
ProgramContext = 0x0010,
GameContexts = 0x0006,
AllContexts = 0x001F,
Inherit = 0x0020,
}
Values
| Name | Remarks |
|---|---|
| None | |
| EditorContext | |
| ClientContext | |
| ServerContext | |
| CommandletContext | |
| ProgramContext | |
| GameContexts | |
| AllContexts | |
| Inherit | Indicates this argument should be automatically inherited by subprocesses. |