From 256c8128f7138808a3e7ec0a667fe6aee4db0ccf Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Wed, 30 Apr 2014 01:35:33 -0400 Subject: move config stuff out to a separate struct --- src/runes.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/runes.h') diff --git a/src/runes.h b/src/runes.h index d4e8d9f..d30bbba 100644 --- a/src/runes.h +++ b/src/runes.h @@ -11,12 +11,14 @@ struct runes_term; struct runes_window; struct runes_pty; struct runes_screen; +struct runes_config; struct runes_loop_data; typedef struct runes_term RunesTerm; typedef struct runes_window RunesWindowBackend; typedef struct runes_pty RunesPtyBackend; typedef struct runes_screen RunesScreen; +typedef struct runes_config RunesConfig; typedef struct runes_loop_data RunesLoopData; struct runes_loop_data { @@ -28,9 +30,9 @@ struct runes_loop_data { #include "pty-unix.h" #include "screen.h" +#include "config.h" #include "term.h" #include "display.h" -#include "config.h" #define UNUSED(x) ((void)x) -- cgit v1.2.3-54-g00ecf