1 /*  $Id: configdata.h,v 1.7 1999/03/07 15:41:31 src Exp $
2  *
3  *  extracted from INN version 2.0
4  *
5  *  $Log: configdata.h,v $
6  *  Revision 1.7  1999/03/07 15:41:31  src
7  *  Removed DBZ_VERSION from configuration
8  *
9  *  Revision 1.6  1998/09/14 06:13:51  src
10  *  Picked RETSIGTYPE from config.h
11  *
12  *  Revision 1.5  1998/09/02 06:50:25  src
13  *  NewsX version 1.0
14  *
15  *  Revision 1.4  1998/07/12 10:39:22  src
16  */
17 
18 #ifndef _CONFIGDATA_H
19 #define _CONFIGDATA_H
20 
21 #include "common.h"
22 #include "proto.h"
23 #include "../config.h"
24 
25 typedef int BOOL;
26 #ifndef TRUE
27 #define TRUE 1
28 #endif
29 #ifndef FALSE
30 #define FALSE 0
31 #endif
32 #ifndef NULL
33 #define NULL (0)
34 #endif
35 
36 #define COMMENT_CHAR    '#'
37 
38 /* BUG: defined where? */
39 #define SMBUF           256
40 #endif
41 
42