26 lines
636 B
C++
26 lines
636 B
C++
|
/***
|
||
|
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
||
|
|
||
|
File: ETriggerLevel.hpp
|
||
|
Date: 2022-1-30
|
||
|
Author: Reece
|
||
|
***/
|
||
|
#pragma once
|
||
|
|
||
|
namespace Aurora::Exit
|
||
|
{
|
||
|
AUE_DEFINE(ETriggerLevel, (
|
||
|
|
||
|
// Runtime deinitialize
|
||
|
eSafeTermination,
|
||
|
|
||
|
// A fatal exception was caught by the watchdog. The process is on its way out
|
||
|
eFatalException,
|
||
|
|
||
|
// Control+C was sent, termination must follow
|
||
|
eSigTerminate,
|
||
|
|
||
|
// Something went wrong in the process. These could be frequent depending on the process
|
||
|
eProblematicEvent
|
||
|
));
|
||
|
}
|