AuroraRuntime/Include/Aurora/IO/NT/HANDLEPipeServer.hpp

23 lines
611 B
C++

/***
Copyright (C) 2024 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: HANDLEPipeServer.hpp
Date: 2024-01-02
Author: Reece
Note: These file is excluded from the default include tree.
You must explicitly include this via:
#if defined(AURORA_IS_MODERNNT_DERIVED)
#include <Aurora/IO/NT/HANDLEPipeServer.hpp>
#endif
***/
#pragma once
namespace Aurora::IO::NT
{
AUKN_SYM AuString ShareFileDescriptor(HANDLE hHandle);
AUKN_SYM void ShareFileDescriptorStop(const AuROString &handle);
AUKN_SYM HANDLE ShareFileDescriptorAccept(const AuROString &handle);
}