AuroraRuntime/Include/Aurora/Processes/StartupParmaters.hpp
Reece 19ebdf3761 Preparing for initial WSA network POC rewrite, not porting gen1 code. Linux support is way behind. Will work on it soon.
[*] Minor refactors
[*] Begin refactoring the Processes subsystem
[*] Added empty files ready to move the gross c++ functional callback in the parse subsystem to a dedicated interface w/ utils
[*] Broke out Win32 Process into an NT base variant (Process.NT.cpp) with Win32 overloaded process exit pokes (Process.Win32.cpp)
2022-01-29 12:36:25 +00:00

15 lines
330 B
C++

#pragma once
namespace Aurora::Processes
{
struct StartupParmaters
{
AuString process;
AuList<AuString> args;
enum ESpawnType type;
bool fwdOut {};
bool fwdErr {};
bool fwdIn {};
bool noShowConsole {}; // Hides conhost or otherwise blanks stdin/out handles
};
}