Reece
19ebdf3761
[*] 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)
17 lines
339 B
C++
17 lines
339 B
C++
/***
|
|
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: Processes.hpp
|
|
Date: 2021-6-9
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
#include "ESpawnType.hpp"
|
|
#include "EStandardHandle.hpp"
|
|
#include "IProcess.hpp"
|
|
#include "StartupParmaters.hpp"
|
|
#include "Spawn.hpp"
|
|
#include "UtilRun.hpp"
|
|
|
|
#include "Open.hpp" |