AuroraRuntime/Source/Loop/LSSemaphore.NT.hpp

24 lines
543 B
C++
Raw Normal View History

/***
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: LSSemaphore.NT.hpp
Date: 2021-10-1
Author: Reece
***/
#pragma once
#include "LSHandle.hpp"
namespace Aurora::Loop
{
struct LSSemaphore : ILSSemaphore, LSHandle
{
LSSemaphore(HANDLE handle);
~LSSemaphore();
bool AddOne() override;
bool ILSSemaphore::IsSignaled() override;
bool ILSSemaphore::WaitOn(AuUInt32 timeout) override;
ELoopSource ILSSemaphore::GetType() override;
};
}