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 60aead7..1f1fb67 100644
--- a/src/config.h
+++ b/src/config.h
@@ -34,6 +34,12 @@ struct MqConfig {
GHashTable *types_and_cbs;
};
+typedef void (*MqConfigBooleanCallback)(const gchar *, const gboolean,
+ gpointer);
+typedef void (*MqConfigIntegerCallback)(const gchar *, const gint, gpointer);
+typedef void (*MqConfigDoubleCallback)(const gchar *, const gdouble, gpointer);
+typedef void (*MqConfigStringCallback)(const gchar *, const gchar *, gpointer);
+
MqConfig *
mq_config_new(const gchar *profile);