summaryrefslogtreecommitdiff
path: root/conf.h
diff options
context:
space:
mode:
Diffstat (limited to 'conf.h')
-rw-r--r--conf.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/conf.h b/conf.h
new file mode 100644
index 0000000..7506373
--- /dev/null
+++ b/conf.h
@@ -0,0 +1,11 @@
+#ifndef CONF_H
+#define CONF_H
+
+#include <glib.h>
+
+gchar *conf_get_string(const gchar *group, const gchar *key);
+gint conf_get_int(const gchar *group, const gchar *key);
+gboolean conf_load();
+void conf_free();
+
+#endif