]> jfr.im git - irc/quakenet/newserv.git/blame - core/error.h
Added new error category ERR_STOP. This is flagged as a "terminal error"
[irc/quakenet/newserv.git] / core / error.h
CommitLineData
2c5db955
CP
1/* error.h:
2 *
3 * Error flagging routines
4 */
5
6
7#define ERR_DEBUG 0
8#define ERR_INFO 1
9#define ERR_WARNING 2
10#define ERR_ERROR 3
11#define ERR_FATAL 4
b71fee1d 12#define ERR_STOP 5
2c5db955
CP
13
14void Error(char *source, int severity, char *reason, ... );