summaryrefslogtreecommitdiffstats
path: root/src/config.c
diff options
context:
space:
mode:
authorPatrick McDermott <pj@pehjota.net>2017-10-06 00:17:17 (EDT)
committer Patrick McDermott <pj@pehjota.net>2017-10-06 00:27:31 (EDT)
commit56eb9f1b5347dc97bb2d37bfb3b80e6dd4981f3a (patch)
tree913fa0248207b8ca7846e5fe2f7c8f1b6fc3619f /src/config.c
parent577978cb2287ff24442c03efbf4adc8adc3c9b9a (diff)
downloadmarquee-56eb9f1b5347dc97bb2d37bfb3b80e6dd4981f3a.zip
marquee-56eb9f1b5347dc97bb2d37bfb3b80e6dd4981f3a.tar.gz
marquee-56eb9f1b5347dc97bb2d37bfb3b80e6dd4981f3a.tar.bz2
src/config.h: Define callback function pointer types
Diffstat (limited to 'src/config.c')
-rw-r--r--src/config.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/config.c b/src/config.c
index e8497d2..ff3b7ee 100644
--- a/src/config.c
+++ b/src/config.c
@@ -38,10 +38,10 @@ enum type {
};
union callback {
- void (*boolean_cb)(const gchar *, const gboolean, gpointer);
- void (*integer_cb)(const gchar *, const gint, gpointer);
- void (*double_cb)(const gchar *, const gdouble, gpointer);
- void (*string_cb)(const gchar *, const gchar *, gpointer);
+ MqConfigBooleanCallback boolean_cb;
+ MqConfigIntegerCallback integer_cb;
+ MqConfigDoubleCallback double_cb;
+ MqConfigStringCallback string_cb;
};
struct callbacks {