aboutsummaryrefslogtreecommitdiffstats
path: root/src/runes.h
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2014-04-25 00:04:06 -0400
committerJesse Luehrs <doy@tozt.net>2014-04-25 00:04:06 -0400
commitf72add79bdc4b72a54fb72e512d3a15263e7484c (patch)
tree78bc1b27b7c58e019237fe0b8661fa00aa41c8ee /src/runes.h
parent9da9ca84dd14ca25f46616298db9b840f62aaf11 (diff)
downloadrunes-f72add79bdc4b72a54fb72e512d3a15263e7484c.tar.gz
runes-f72add79bdc4b72a54fb72e512d3a15263e7484c.zip
start refactoring to draw parsed text to an intermediary data structure
Diffstat (limited to 'src/runes.h')
-rw-r--r--src/runes.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/runes.h b/src/runes.h
index 8c2861b..d4e8d9f 100644
--- a/src/runes.h
+++ b/src/runes.h
@@ -10,11 +10,13 @@
struct runes_term;
struct runes_window;
struct runes_pty;
+struct runes_screen;
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_loop_data RunesLoopData;
struct runes_loop_data {
@@ -25,9 +27,9 @@ struct runes_loop_data {
#include "window-xlib.h"
#include "pty-unix.h"
+#include "screen.h"
#include "term.h"
#include "display.h"
-#include "parser.h"
#include "config.h"
#define UNUSED(x) ((void)x)