26 lines
439 B
C++
26 lines
439 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 <Source/RuntimeInternal.hpp>
|
|
#include "Async.hpp"
|
|
#include "AuSchedular.hpp"
|
|
#include "AsyncApp.hpp"
|
|
|
|
namespace Aurora::Async
|
|
{
|
|
void InitAsync()
|
|
{
|
|
InitSched();
|
|
InitApp();
|
|
}
|
|
|
|
void ShutdownAsync()
|
|
{
|
|
DeinitSched();
|
|
ReleaseApp();
|
|
}
|
|
} |