diff --git a/Source/IPC/IPCMemory.NT.cpp b/Source/IPC/IPCMemory.NT.cpp index be29b149..900afb0d 100644 --- a/Source/IPC/IPCMemory.NT.cpp +++ b/Source/IPC/IPCMemory.NT.cpp @@ -12,5 +12,15 @@ namespace Aurora::IPC { + AUKN_SYM AuSPtr NewSharedMemory(AuUInt length) + { + SysPushErrorUnimplemented(); + return {}; + } + AUKN_SYM AuSPtr ImportSharedMemory(const AuString &handleString) + { + SysPushErrorUnimplemented(); + return {}; + } } \ No newline at end of file diff --git a/Source/IPC/IPCPipe.NT.cpp b/Source/IPC/IPCPipe.NT.cpp index a64c9692..d313d4c3 100644 --- a/Source/IPC/IPCPipe.NT.cpp +++ b/Source/IPC/IPCPipe.NT.cpp @@ -12,5 +12,15 @@ namespace Aurora::IPC { + AUKN_SYM AuSPtr NewPipe() + { + SysPushErrorUnimplemented(); + return {}; + } + AUKN_SYM AuSPtr ImportPipe(const AuString &handle) + { + SysPushErrorUnimplemented(); + return {}; + } } \ No newline at end of file diff --git a/Source/IPC/IPCPrimitives.NT.cpp b/Source/IPC/IPCPrimitives.NT.cpp index 7250047c..0e5ecdf1 100755 --- a/Source/IPC/IPCPrimitives.NT.cpp +++ b/Source/IPC/IPCPrimitives.NT.cpp @@ -12,5 +12,39 @@ 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 {}; + } } \ No newline at end of file