aboutsummaryrefslogtreecommitdiffstats
path: root/src/runes.h
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2016-05-11 15:20:01 -0400
committerJesse Luehrs <doy@tozt.net>2016-05-11 15:20:01 -0400
commitb92788dee979855f753e030cb8be8d19c22d00df (patch)
tree1c8992c28e0b874dacf33bd912d6a372f1c5b243 /src/runes.h
parentb11900bb0594b5e04c4ad69237d0a61146f85d35 (diff)
downloadrunes-b92788dee979855f753e030cb8be8d19c22d00df.tar.gz
runes-b92788dee979855f753e030cb8be8d19c22d00df.zip
split global window management stuff out into its own file
also rename a few things for clarity
Diffstat (limited to 'src/runes.h')
-rw-r--r--src/runes.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/runes.h b/src/runes.h
index aa966a0..fdfca81 100644
--- a/src/runes.h
+++ b/src/runes.h
@@ -3,6 +3,7 @@
struct runes_term;
struct runes_window;
+struct runes_window_backend;
struct runes_pty;
struct runes_config;
struct runes_display;
@@ -10,9 +11,9 @@ struct runes_loop;
struct runes_daemon;
typedef struct runes_term RunesTerm;
-typedef struct runes_window RunesWindowBackend;
-typedef struct runes_window_global RunesWindowBackendGlobal;
-typedef struct runes_pty RunesPtyBackend;
+typedef struct runes_window RunesWindow;
+typedef struct runes_window_backend RunesWindowBackend;
+typedef struct runes_pty RunesPty;
typedef struct runes_config RunesConfig;
typedef struct runes_display RunesDisplay;
typedef struct runes_loop RunesLoop;