1 /*
2  * AIDE (Advanced Intrusion Detection Environment)
3  *
4  * Copyright (C) 1999-2002, 2010, 2020-2021 Rami Lehti, Pablo Virolainen,
5  *               Richard van den Berg, Hannes von Haugwitz
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License as
9  * published by the Free Software Foundation; either version 2 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21 
22 #ifndef _ERRORCODES_H_INCLUDED
23 #define  _ERRORCODES_H_INCLUDED
24 
25 #define ERROR_WRITING_ERROR 14
26 #define INVALID_ARGUMENT_ERROR 15
27 #define UNIMPLEMENTED_FUNCTION_ERROR 16
28 #define INVALID_CONFIGURELINE_ERROR 17
29 #define IO_ERROR 18
30 #define VERSION_MISMATCH_ERROR 19
31 #define EXEC_ERROR 20
32 #define LOCK_ERROR 21
33 #define HASH_ALGO_ERROR 30
34 
35 #endif
36