summaryrefslogtreecommitdiffstats
path: root/src/config.h
diff options
context:
space:
mode:
authorPatrick McDermott <pj@pehjota.net>2017-10-04 17:48:08 (EDT)
committer Patrick McDermott <pj@pehjota.net>2017-10-04 17:48:08 (EDT)
commit700e2658c496d0bdb241fa8a32708bd4b613a729 (patch)
tree4a3e4d360cc4e502f4200ba5fa0b3ab2ded35503 /src/config.h
parent891435f53bf3b8f52e1161fc986f127d3343bf62 (diff)
downloadmarquee-700e2658c496d0bdb241fa8a32708bd4b613a729.zip
marquee-700e2658c496d0bdb241fa8a32708bd4b613a729.tar.gz
marquee-700e2658c496d0bdb241fa8a32708bd4b613a729.tar.bz2
src/config.[ch]: Expose static function as mq_config_set_boolean()
And declare mq_config_new() in src/config.h.
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/config.h b/src/config.h
index 281319f..f7e285c 100644
--- a/src/config.h
+++ b/src/config.h
@@ -33,4 +33,10 @@ struct MqConfig {
GHashTable *types_and_cbs;
};
+MqConfig *
+mq_config_new(const gchar *profile);
+
+void
+mq_config_set_boolean(MqConfig *config, const gchar *name, gboolean value);
+
#endif