summaryrefslogtreecommitdiffstats
path: root/src/config.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.c')
-rw-r--r--src/config.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/config.c b/src/config.c
index a841141..ed2c4d9 100644
--- a/src/config.c
+++ b/src/config.c
@@ -23,12 +23,20 @@
#include <config.h>
#endif
-#include <string.h>
+#include "config.h"
+
#include <stdlib.h>
+#include <string.h>
#include <glib.h>
-#include "config.h"
+struct MqConfig {
+ gchar *profile;
+ gchar *file_name;
+ GKeyFile *key_file;
+ gboolean types_and_cbs_set;
+ GHashTable *types_and_cbs;
+};
enum type {
TYPE_BOOLEAN,