AuroraRuntime/Source/Async/Async.cpp
Reece 9a93d4ec8d [+] Added the old RSA wrappers
[*] Prepare for implementing ECC (again)
2021-07-01 10:18:42 +01:00

23 lines
367 B
C++

/***
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: Async.cpp
Date: 2021-6-26
Author: Reece
***/
#include <RuntimeInternal.hpp>
#include "Async.hpp"
#include "Schedular.hpp"
namespace Aurora::Async
{
void InitAsync()
{
InitSched();
}
void ShutdownAsync()
{
ShutdownSched();
}
}