19 lines
438 B
C++
19 lines
438 B
C++
|
/***
|
||
|
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
||
|
|
||
|
File: IIOWaitableIOTimer.hpp
|
||
|
Date: 2022-6-6
|
||
|
Author: Reece
|
||
|
***/
|
||
|
#pragma once
|
||
|
|
||
|
namespace Aurora::IO
|
||
|
{
|
||
|
struct IIOWaitableIOTimer : IIOWaitableItem
|
||
|
{
|
||
|
virtual AuUInt64 SetConstantTick(AuUInt64 ns) = 0;
|
||
|
virtual AuUInt64 SetTargetTimeAbs(AuUInt64 ns) = 0;
|
||
|
};
|
||
|
|
||
|
AUKN_SYM AuSPtr<IIOWaitableIOTimer> NewWaitableIOTimer();
|
||
|
}
|