Cthulhu  0.2.10
Cthulhu compiler collection
notify.inc
Go to the documentation of this file.
1 // SPDX-License-Identifier: LGPL-3.0-only
2 
3 #ifndef SEVERITY
4 # define SEVERITY(ID, NAME)
5 #endif
6 
7 // ordered from highest severity to lowest
8 // to allow for comparisons
9 SEVERITY(eSeveritySorry, "sorry")
10 SEVERITY(eSeverityInternal, "panic")
11 SEVERITY(eSeverityFatal, "fatal")
12 SEVERITY(eSeverityWarn, "warn")
13 SEVERITY(eSeverityInfo, "info")
14 SEVERITY(eSeverityDebug, "debug")
15 
16 #undef SEVERITY
#define SEVERITY(ID, NAME)
Definition: notify.inc:4