/*** Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved. File: IPCPrimitives.NT.cpp Date: 2022-4-13 Author: Reece ***/ #include #include "IPC.hpp" #include "IPCHandle.hpp" #include "IPCPrimitives.NT.hpp" namespace Aurora::IPC { AUKN_SYM AuSPtr ImportMutex(const AuString &handle) { SysPushErrorUnimplemented(); return {}; } AUKN_SYM AuSPtr NewMutex() { SysPushErrorUnimplemented(); return {}; } AUKN_SYM AuSPtr NewEvent(bool triggered, bool atomicRelease) { SysPushErrorUnimplemented(); return {}; } AUKN_SYM AuSPtr ImportEvent(const AuString &handle) { SysPushErrorUnimplemented(); return {}; } AUKN_SYM AuSPtr ImportSemaphore(const AuString &handle) { SysPushErrorUnimplemented(); return {}; } AUKN_SYM AuSPtr NewSemaphore(int startingValue) { SysPushErrorUnimplemented(); return {}; } }