1 /*    c_fconfig.h
2  *
3  *    Copyright (c) 1994-1996, Marko Macek
4  *
5  *    You may distribute under the terms of either the GNU General Public
6  *    License or the Artistic License, as specified in the README file.
7  *
8  */
9 
10 #ifndef C_FCONFIG_H
11 #define C_FCONFIG_H
12 
13 #define CF_STRING   1
14 #define CF_INT      2
15 #define CF_REGEXP   3
16 
17 #define CF_END      100
18 #define CF_SUB      101
19 #define CF_MENU     102
20 #define CF_OBJECT   103
21 #define CF_COMMAND  104
22 #define CF_ITEM     105
23 #define CF_SUBMENU  106
24 #define CF_MENUSUB  107
25 #define CF_MODE     108
26 #define CF_PARENT   109
27 #define CF_KEYSUB   110
28 #define CF_KEY      111
29 #define CF_COLOR    112
30 #define CF_KEYWORD  113
31 #define CF_SETVAR   114
32 #define CF_COMPRX   115
33 #define CF_EVENTMAP 116
34 #define CF_COLORIZE 117
35 #define CF_ABBREV   118
36 #define CF_HSTATE   119
37 #define CF_HTRANS   120
38 #define CF_HWORDS   121
39 #define CF_SUBMENUCOND 122
40 #define CF_HWTYPE   123
41 #define CF_VARIABLE 124
42 #define CF_CONCAT   125
43 #define CF_CVSIGNRX 126
44 #define CF_SVNIGNRX 127
45 
46 #define CF_EOF      254
47 
48 #define CONFIG_ID   0x1A1D70E1
49 
50 #endif // C_FCONFIG_H
51