summaryrefslogtreecommitdiffstats
path: root/src/config.h
diff options
context:
space:
mode:
authorPatrick McDermott <pj@pehjota.net>2017-10-22 19:09:22 (EDT)
committer Patrick McDermott <pj@pehjota.net>2017-10-22 19:09:22 (EDT)
commit8fc032f2f64f4b7eb022adb0b1255a5a68df109f (patch)
tree31094e678eba9fc4a828ddb8a2948d105ff898bc /src/config.h
parent927c4ea37ca967e61831164bb4b7ea33e28e0d9d (diff)
parenta0b9288a5e6fa943a6f2b7f418a12343649ed454 (diff)
downloadmarquee-8fc032f2f64f4b7eb022adb0b1255a5a68df109f.zip
marquee-8fc032f2f64f4b7eb022adb0b1255a5a68df109f.tar.gz
marquee-8fc032f2f64f4b7eb022adb0b1255a5a68df109f.tar.bz2
Merge branch 'gobjectification'
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h12
1 files changed, 2 insertions, 10 deletions
diff --git a/src/config.h b/src/config.h
index 55eeed4..93af5f8 100644
--- a/src/config.h
+++ b/src/config.h
@@ -19,20 +19,12 @@
* along with Marquee. If not, see <http://www.gnu.org/licenses/>.
*/
-typedef struct MqConfig MqConfig;
-
#ifndef MQ_CONFIG_H
#define MQ_CONFIG_H
-#include <glib.h>
+typedef struct MqConfig MqConfig;
-struct MqConfig {
- gchar *profile;
- gchar *file_name;
- GKeyFile *key_file;
- gboolean types_and_cbs_set;
- GHashTable *types_and_cbs;
-};
+#include <glib.h>
typedef void (*MqConfigBooleanCallback)(MqConfig *,
const gchar *, const gboolean, gpointer);