23 lines
576 B
C++
Executable File
23 lines
576 B
C++
Executable File
/***
|
|
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: UNIX.hpp
|
|
Date: 2022-4-14
|
|
Author: Reece
|
|
|
|
Note: These file is excluded from the default include tree.
|
|
You must explicitly include this via:
|
|
#if defined(AURORA_IS_POSIX_DERIVED)
|
|
#include <Aurora/IO/UNIX/UNIX.hpp>
|
|
#endif
|
|
***/
|
|
#pragma once
|
|
|
|
namespace Aurora::IO::UNIX
|
|
{
|
|
AUKN_SYM AuString ShareFileDescriptor(int fd);
|
|
|
|
AUKN_SYM void ShareFileDescriptorStop(const AuString &handle);
|
|
|
|
AUKN_SYM int ShareFileDescriptorAccept(const AuString &handle);
|
|
} |