/*** 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 NewWaitableIOTimer(); }