2022-06-14 01:14:51 +00:00
|
|
|
/***
|
|
|
|
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
|
|
|
|
File: EStreamForward.hpp
|
|
|
|
Date: 2022-6-13
|
|
|
|
Author: Reece
|
|
|
|
***/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace Aurora::Processes
|
|
|
|
{
|
|
|
|
AUE_DEFINE(EStreamForward, (
|
|
|
|
eNull,
|
|
|
|
eCurrentProcess,
|
2023-07-06 12:44:32 +00:00
|
|
|
eAsyncPipe,
|
2023-08-20 21:26:30 +00:00
|
|
|
eNewConsoleWindow,
|
|
|
|
eIOHandle
|
2022-06-14 01:14:51 +00:00
|
|
|
));
|
|
|
|
}
|