17 lines
299 B
C++
17 lines
299 B
C++
/***
|
|
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,
|
|
eAsyncPipe
|
|
));
|
|
} |