AuroraRuntime/Source/Threading/Threads/ThreadHandles.hpp
2021-06-27 22:25:29 +01:00

15 lines
316 B
C++

/***
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: ThreadHandles.hpp
Date: 2021-6-19
Author: Reece
***/
#pragma once
namespace Aurora::Threading::Threads
{
void HandleRegister(IAuroraThread *thread);
void HandleRemove();
IAuroraThread *HandleCurrent();
}