14 lines
253 B
C++
14 lines
253 B
C++
|
/***
|
||
|
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
||
|
|
||
|
File: MTWatchDog.hpp
|
||
|
Date: 2022-2-3
|
||
|
Author: Reece
|
||
|
***/
|
||
|
#pragma once
|
||
|
|
||
|
namespace Aurora::Exit
|
||
|
{
|
||
|
inline bool gHasSentTerminate {};
|
||
|
void InitWatchdog();
|
||
|
}
|