diff options
author | Patrick McDermott <pj@pehjota.net> | 2017-10-04 22:42:13 (EDT) |
---|---|---|
committer | Patrick McDermott <pj@pehjota.net> | 2017-10-04 22:42:13 (EDT) |
commit | 9b0e11f239c6fc380f8bdbfc734d7b12e1df25e1 (patch) | |
tree | 1d04de292c1fb0341643b30cca58894c41a517af /src | |
parent | f3d47017e677eb1e7d4733e6ad49b46850423610 (diff) | |
download | marquee-9b0e11f239c6fc380f8bdbfc734d7b12e1df25e1.zip marquee-9b0e11f239c6fc380f8bdbfc734d7b12e1df25e1.tar.gz marquee-9b0e11f239c6fc380f8bdbfc734d7b12e1df25e1.tar.bz2 |
src/config.h: Declare mq_config_load() and mq_config_save()
Diffstat (limited to 'src')
-rw-r--r-- | src/config.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/config.h b/src/config.h index 20254e9..97e58fa 100644 --- a/src/config.h +++ b/src/config.h @@ -37,6 +37,12 @@ MqConfig * mq_config_new(const gchar *profile); gboolean +mq_config_load(MqConfig *config); + +gboolean +mq_config_save(MqConfig *config); + +gboolean mq_config_get_boolean(MqConfig *config, const gchar *name); gint |