[Config] Add initial implementation of the configuration subsystem
[tilda-gobject.git] / tilda-config.h
1 #ifndef TILDA_CONFIG_H
2 #define TILDA_CONFIG_H
3
4 #include <glib.h>
5
6 /* Global configuration-holding structures */
7 extern GHashTable *config_defaults;
8 extern GKeyFile   *config_userprefs;
9
10 /* Set-up and tear-down functions */
11 gboolean tilda_config_init (const gchar *filename);
12 gboolean tilda_config_free ();
13
14 #endif /* TILDA_CONFIG_H */
15
16 /* vim: set ts=4 sts=4 sw=4 noet tw=112: */