blob: f58016984ac6776503c3734d1279e41d8cffe8c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#define CONF_STR 1
#define CONF_CBK 2
#define CONF_MSTR 3
struct gconffile {
char *path;
FILE *file;
};
void getgenericconfig(FILE *f, char *block, ...);
FILE *pushgconffile(struct gconffile **cf, const char *path);
FILE *popgconffile(struct gconffile **cf);
|