11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
LC_CONF_SPACE,
LC_CONF_XML
} lc_conf_type_t;
__BLANK_LINE__
typedef enum {
LC_VAR_UNKNOWN, /* Requires no arguments. */
LC_VAR_NONE, /* Requires no arguments. */
LC_VAR_STRING,
LC_VAR_LONG_LONG,
LC_VAR_LONG,
LC_VAR_INT,
LC_VAR_SHORT,
LC_VAR_BOOL,
LC_VAR_FILENAME,
LC_VAR_DIRECTORY,
LC_VAR_SIZE_LONG_LONG,
LC_VAR_SIZE_LONG,
LC_VAR_SIZE_INT,
LC_VAR_SIZE_SHORT,
LC_VAR_TIME,
LC_VAR_DATE,
LC_VAR_SECTION,
LC_VAR_SECTIONSTART,
LC_VAR_SECTIONEND,
LC_VAR_BOOL_BY_EXISTANCE /* Requires no arguments. */
} lc_var_type_t;
__BLANK_LINE__
typedef enum {
LC_FLAGS_VAR,
LC_FLAGS_CMDLINE,
LC_FLAGS_SECTIONSTART,
LC_FLAGS_SECTIONEND
} lc_flags_t;
__BLANK_LINE__
typedef enum {
|
|
|
|
>
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
LC_CONF_SPACE,
LC_CONF_XML
} lc_conf_type_t;
__BLANK_LINE__
typedef enum {
LC_VAR_UNKNOWN,
LC_VAR_NONE,
LC_VAR_STRING,
LC_VAR_LONG_LONG,
LC_VAR_LONG,
LC_VAR_INT,
LC_VAR_SHORT,
LC_VAR_BOOL,
LC_VAR_FILENAME,
LC_VAR_DIRECTORY,
LC_VAR_SIZE_LONG_LONG,
LC_VAR_SIZE_LONG,
LC_VAR_SIZE_INT,
LC_VAR_SIZE_SHORT,
LC_VAR_TIME,
LC_VAR_DATE,
LC_VAR_SECTION,
LC_VAR_SECTIONSTART,
LC_VAR_SECTIONEND,
LC_VAR_BOOL_BY_EXISTANCE
} lc_var_type_t;
__BLANK_LINE__
typedef enum {
LC_FLAGS_VAR,
LC_FLAGS_CMDLINE,
LC_FLAGS_ENVIRON,
LC_FLAGS_SECTIONSTART,
LC_FLAGS_SECTIONEND
} lc_flags_t;
__BLANK_LINE__
typedef enum {
|