AuroraRuntime/Source/IPC/IPCPipe.NT.cpp

26 lines
534 B
C++
Raw Normal View History

2022-04-16 15:42:48 +00:00
/***
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: IPCPipe.NT.cpp
Date: 2022-4-15
Author: Reece
***/
#include <Source/RuntimeInternal.hpp>
#include "IPC.hpp"
#include "IPCHandle.hpp"
#include "IPCPipe.NT.hpp"
namespace Aurora::IPC
{
2022-04-16 17:40:36 +00:00
AUKN_SYM AuSPtr<IPCPipe> NewPipe()
{
SysPushErrorUnimplemented();
return {};
}
2022-04-16 15:42:48 +00:00
2022-04-16 17:40:36 +00:00
AUKN_SYM AuSPtr<IPCPipe> ImportPipe(const AuString &handle)
{
SysPushErrorUnimplemented();
return {};
}
2022-04-16 15:42:48 +00:00
}