diff options
Diffstat (limited to 'gconfig.h')
-rw-r--r-- | gconfig.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -2,4 +2,11 @@ #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); |