AuroraRuntime/Source/Threading/Primitives/AuIConditionMutexEx.hpp

16 lines
318 B
C++
Raw Normal View History

2021-06-27 21:25:29 +00:00
/***
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
2022-11-17 07:46:07 +00:00
File: AuIConditionMutexEx.hpp
2021-06-27 21:25:29 +00:00
Date: 2021-6-14
Author: Reece
***/
#pragma once
namespace Aurora::Threading::Primitives
{
2022-06-01 21:49:38 +00:00
struct IConditionMutexEx : IConditionMutex
2021-06-27 21:25:29 +00:00
{
virtual AuUInt GetOSHandle() = 0;
};
}