new upstream release (3.3.0); modify package compatibility for Stretch
[ossec-hids.git] / src / analysisd / config.h
1 /* Copyright (C) 2009 Trend Micro Inc.
2  * All right reserved.
3  *
4  * This program is a free software; you can redistribute it
5  * and/or modify it under the terms of the GNU General Public
6  * License (version 2) as published by the FSF - Free Software
7  * Foundation
8  */
9
10 #ifndef _CONFIG__H
11 #define _CONFIG__H
12
13 #include "config/config.h"
14 #include "config/global-config.h"
15 #ifdef LIBGEOIP_ENABLED
16 #include "GeoIP.h"
17 #endif
18
19
20 extern long int __crt_ftell; /* Global ftell pointer */
21 extern _Config Config;       /* Global Config structure */
22
23 #ifdef LIBGEOIP_ENABLED
24 GeoIP *geoipdb;
25 #endif
26
27 int GlobalConf(const char *cfgfile);
28
29 #endif /* _CONFIG__H */
30