summaryrefslogtreecommitdiff
path: root/walls_conf.h
diff options
context:
space:
mode:
authorJon Bergli Heier <snakebite@jvnv.net>2009-12-23 22:26:34 +0100
committerJon Bergli Heier <snakebite@jvnv.net>2009-12-23 22:26:34 +0100
commit211177a9747939002f8e7da1d569a5551c4e0600 (patch)
treef08d0e96034cf40854e7b32adc3f0a82d520be24 /walls_conf.h
parent9030ddb9d47663d16327a9e734ccfd0c74ba0bb7 (diff)
Use GKeyFile to store window positions.
Diffstat (limited to 'walls_conf.h')
-rw-r--r--walls_conf.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/walls_conf.h b/walls_conf.h
new file mode 100644
index 0000000..f0f7859
--- /dev/null
+++ b/walls_conf.h
@@ -0,0 +1,12 @@
+#ifndef _WALLS_CONF_H_
+#define _WALLS_CONF_H_
+
+#include <glib.h>
+
+void conf_open();
+void conf_close();
+gint conf_get_int(const gchar*, const gchar*, gint);
+
+extern GKeyFile *keyfile;
+
+#endif