summaryrefslogtreecommitdiffstats
path: root/src/config.h
diff options
context:
space:
mode:
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 b37c6bb..60aead7 100644
--- a/src/config.h
+++ b/src/config.h
@@ -52,6 +52,9 @@ mq_config_get_integer(MqConfig *config, const gchar *name);
gdouble
mq_config_get_double(MqConfig *config, const gchar *name);
+gchar *
+mq_config_get_string(MqConfig *config, const gchar *name);
+
void
mq_config_set_boolean(MqConfig *config, const gchar *name, gboolean value);
@@ -61,6 +64,9 @@ mq_config_set_integer(MqConfig *config, const gchar *name, gint value);
void
mq_config_set_double(MqConfig *config, const gchar *name, gdouble value);
+void
+mq_config_set_string(MqConfig *config, const gchar *name, const gchar *value);
+
gboolean
mq_config_set(MqConfig *config, const gchar *name, const gchar *value);