aboutsummaryrefslogtreecommitdiffstats
path: root/src/runes.h
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2014-05-04 21:52:59 -0400
committerJesse Luehrs <doy@tozt.net>2014-05-04 21:52:59 -0400
commit6ceb606a155d2950ca7e5fd2165997246494caeb (patch)
tree5bcbb1082aba7e35a8130b66423f9eadc56d3866 /src/runes.h
parentd78ae64f0682a4aef09e9ff77e8748af9b2380b9 (diff)
downloadrunes-6ceb606a155d2950ca7e5fd2165997246494caeb.tar.gz
runes-6ceb606a155d2950ca7e5fd2165997246494caeb.zip
more refactoring
Diffstat (limited to 'src/runes.h')
-rw-r--r--src/runes.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/runes.h b/src/runes.h
index d30bbba..05398e9 100644
--- a/src/runes.h
+++ b/src/runes.h
@@ -12,6 +12,7 @@ struct runes_window;
struct runes_pty;
struct runes_screen;
struct runes_config;
+struct runes_display;
struct runes_loop_data;
typedef struct runes_term RunesTerm;
@@ -19,6 +20,7 @@ typedef struct runes_window RunesWindowBackend;
typedef struct runes_pty RunesPtyBackend;
typedef struct runes_screen RunesScreen;
typedef struct runes_config RunesConfig;
+typedef struct runes_display RunesDisplay;
typedef struct runes_loop_data RunesLoopData;
struct runes_loop_data {
@@ -31,9 +33,10 @@ struct runes_loop_data {
#include "screen.h"
#include "config.h"
-#include "term.h"
#include "display.h"
+#include "term.h"
+
#define UNUSED(x) ((void)x)
#endif