AuroraRuntime/Source/IO/Loop/LSWin32.NT.hpp

23 lines
474 B
C++

/***
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: LSWin32.NT.hpp
Date: 2021-10-2
Author: Reece
***/
#pragma once
namespace Aurora::IO::Loop
{
struct Win32Dummy : ILoopSource
{
Win32Dummy(bool bIsPumping) : bIsPumping_(bIsPumping)
{}
const bool bIsPumping_;
bool IsSignaled() override;
bool WaitOn(AuUInt32 timeout) override;
ELoopSource GetType() override;
};
}