aboutsummaryrefslogtreecommitdiffstats
path: root/runes.h
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2014-04-09 00:11:10 -0400
committerJesse Luehrs <doy@tozt.net>2014-04-09 00:11:10 -0400
commit6beb7818efb57851a042953937af72163f1bde6c (patch)
tree6abc8763d6182f4c3de6da8567d05f995fd53db0 /runes.h
parentef5cd6e10e93ef973536d2df2ad57ac42a2118ea (diff)
downloadrunes-6beb7818efb57851a042953937af72163f1bde6c.tar.gz
runes-6beb7818efb57851a042953937af72163f1bde6c.zip
spawn a shell process and run it on a pty
not at all convinced that this is correct, but it at least does things
Diffstat (limited to 'runes.h')
-rw-r--r--runes.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/runes.h b/runes.h
index bf51186..9b90b84 100644
--- a/runes.h
+++ b/runes.h
@@ -6,15 +6,18 @@
struct runes_term;
struct runes_window;
+struct runes_pty;
struct runes_loop_data;
typedef struct runes_term RunesTerm;
typedef struct runes_window RunesWindowBackend;
+typedef struct runes_pty RunesPtyBackend;
typedef struct runes_loop_data RunesLoopData;
#include "events.h"
#include "window-xlib.h"
+#include "pty-unix.h"
#include "term.h"
#include "display.h"