16 lines
318 B
C++
16 lines
318 B
C++
/***
|
|
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: AuIConditionMutexEx.hpp
|
|
Date: 2021-6-14
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
namespace Aurora::Threading::Primitives
|
|
{
|
|
struct IConditionMutexEx : IConditionMutex
|
|
{
|
|
virtual AuUInt GetOSHandle() = 0;
|
|
};
|
|
} |