annotate th_config.h @ 69:28156333ef4c

Cosmetics.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 15 Nov 2012 19:22:42 +0200
parents 34d58b0f2d52
children a0e1b29be35d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1 /*
10
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 3
diff changeset
2 * Very simple configuration file handling
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
3 * Programmed and designed by Matti 'ccr' Hamalainen
66
34d58b0f2d52 Update copyrights.
Matti Hamalainen <ccr@tnsp.org>
parents: 49
diff changeset
4 * (C) Copyright 2004-2012 Tecnic Software productions (TNSP)
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
5 *
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
6 * Please read file 'COPYING' for information on license and distribution.
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
7 */
49
598609fb49b0 Change how "config.h" is included, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 22
diff changeset
8 #ifndef TH_CONFIG_H
598609fb49b0 Change how "config.h" is included, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 22
diff changeset
9 #define TH_CONFIG_H
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
10
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
11 #ifdef __cplusplus
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
12 extern "C" {
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
13 #endif
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
14
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
15 #include "th_util.h"
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
16 #include <stdio.h>
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
17
10
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 3
diff changeset
18
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 3
diff changeset
19 /* Definitions
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
20 */
69
28156333ef4c Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 66
diff changeset
21 enum ITEM_TYPE
28156333ef4c Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 66
diff changeset
22 {
16
Matti Hamalainen <ccr@tnsp.org>
parents: 15
diff changeset
23 ITEM_SECTION = 1,
11
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
24 ITEM_COMMENT,
10
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 3
diff changeset
25 ITEM_STRING,
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 3
diff changeset
26 ITEM_INT,
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 3
diff changeset
27 ITEM_UINT,
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 3
diff changeset
28 ITEM_BOOL,
11
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
29 ITEM_FLOAT,
16
Matti Hamalainen <ccr@tnsp.org>
parents: 15
diff changeset
30 ITEM_HEX_TRIPLET,
Matti Hamalainen <ccr@tnsp.org>
parents: 15
diff changeset
31
Matti Hamalainen <ccr@tnsp.org>
parents: 15
diff changeset
32 ITEM_STRING_LIST,
Matti Hamalainen <ccr@tnsp.org>
parents: 15
diff changeset
33 ITEM_HEX_TRIPLET_LIST
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
34 };
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
35
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
36
10
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 3
diff changeset
37 typedef struct _cfgitem_t {
15
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
38 int type;
11
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
39 char *name;
15
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
40 union {
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
41 int *val_int;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
42 unsigned int *val_uint;
16
Matti Hamalainen <ccr@tnsp.org>
parents: 15
diff changeset
43 char **val_str;
15
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
44 BOOL *val_bool;
16
Matti Hamalainen <ccr@tnsp.org>
parents: 15
diff changeset
45
Matti Hamalainen <ccr@tnsp.org>
parents: 15
diff changeset
46 void *data;
Matti Hamalainen <ccr@tnsp.org>
parents: 15
diff changeset
47 qlist_t **list;
15
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
48 struct _cfgitem_t *section;
22
1ac2449c4df7 ISO C99 compatibility fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
49 } v;
11
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
50
10
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 3
diff changeset
51 struct _cfgitem_t *next, *prev;
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 3
diff changeset
52 } cfgitem_t;
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
53
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
54
10
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 3
diff changeset
55 /* Functions
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
56 */
16
Matti Hamalainen <ccr@tnsp.org>
parents: 15
diff changeset
57 int th_cfg_read(FILE *, char *, cfgitem_t *);
Matti Hamalainen <ccr@tnsp.org>
parents: 15
diff changeset
58 void th_cfg_free(cfgitem_t *);
Matti Hamalainen <ccr@tnsp.org>
parents: 15
diff changeset
59 int th_cfg_write(FILE *, char *, cfgitem_t *);
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
60
16
Matti Hamalainen <ccr@tnsp.org>
parents: 15
diff changeset
61 int th_cfg_add_section(cfgitem_t **cfg, char *name, cfgitem_t *data);
Matti Hamalainen <ccr@tnsp.org>
parents: 15
diff changeset
62 int th_cfg_add_comment(cfgitem_t **cfg, char *comment);
Matti Hamalainen <ccr@tnsp.org>
parents: 15
diff changeset
63 int th_cfg_add_int(cfgitem_t **cfg, char *name, int *data, int itemDef);
Matti Hamalainen <ccr@tnsp.org>
parents: 15
diff changeset
64 int th_cfg_add_uint(cfgitem_t **cfg, char *name, unsigned int *data, unsigned int itemDef);
Matti Hamalainen <ccr@tnsp.org>
parents: 15
diff changeset
65 int th_cfg_add_string(cfgitem_t **cfg, char *name, char **data, char *itemDef);
Matti Hamalainen <ccr@tnsp.org>
parents: 15
diff changeset
66 int th_cfg_add_bool(cfgitem_t **cfg, char *name, BOOL *data, BOOL itemDef);
Matti Hamalainen <ccr@tnsp.org>
parents: 15
diff changeset
67 int th_cfg_add_float(cfgitem_t **cfg, char *name, float *data, float itemDef);
Matti Hamalainen <ccr@tnsp.org>
parents: 15
diff changeset
68 int th_cfg_add_hexvalue(cfgitem_t **cfg, char *name, int *data, int itemDef);
15
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
69
16
Matti Hamalainen <ccr@tnsp.org>
parents: 15
diff changeset
70 int th_cfg_add_string_list(cfgitem_t **cfg, char *name, qlist_t **list);
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
71
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
72 #ifdef __cplusplus
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
73 }
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
74 #endif
49
598609fb49b0 Change how "config.h" is included, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 22
diff changeset
75 #endif /* TH_CONFIG_H */