2021-06-27 21:33:58 +00:00
|
|
|
/***
|
|
|
|
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
|
|
|
|
File: Async.hpp
|
|
|
|
Date: 2021-6-26
|
|
|
|
Author: Reece
|
|
|
|
***/
|
2021-06-27 21:25:29 +00:00
|
|
|
#pragma once
|
|
|
|
|
2021-11-05 17:34:23 +00:00
|
|
|
#include "GroupState.hpp"
|
|
|
|
#include "ThreadState.hpp"
|
|
|
|
#include "AsyncRunnable.hpp"
|
|
|
|
|
2021-06-27 21:25:29 +00:00
|
|
|
namespace Aurora::Async
|
|
|
|
{
|
|
|
|
void InitAsync();
|
2021-07-01 09:18:42 +00:00
|
|
|
void ShutdownAsync();
|
2021-06-27 21:25:29 +00:00
|
|
|
}
|