aboutsummaryrefslogtreecommitdiffstats
path: root/src/pty-unix.h
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2016-05-07 17:56:22 -0400
committerJesse Luehrs <doy@tozt.net>2016-05-07 17:56:22 -0400
commitc1af3c6dc560c60a82440d5119c9565dafaafe1e (patch)
tree7831709cf4c002597ba3ad31a83229e3aaa86523 /src/pty-unix.h
parent5cfc4dd06e0fabedacff605667932ae7f0a2a278 (diff)
downloadrunes-c1af3c6dc560c60a82440d5119c9565dafaafe1e.tar.gz
runes-c1af3c6dc560c60a82440d5119c9565dafaafe1e.zip
split up some unnecessary cross-module dependencies
Diffstat (limited to 'src/pty-unix.h')
-rw-r--r--src/pty-unix.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pty-unix.h b/src/pty-unix.h
index 22abaae..1c96ec1 100644
--- a/src/pty-unix.h
+++ b/src/pty-unix.h
@@ -13,7 +13,8 @@ struct runes_pty {
void runes_pty_backend_spawn_subprocess(RunesTerm *t);
void runes_pty_backend_init_loop(RunesTerm *t, RunesLoop *loop);
-void runes_pty_backend_set_window_size(RunesTerm *t);
+void runes_pty_backend_set_window_size(RunesTerm *t, int row, int col,
+ int xpixel, int ypixel);
void runes_pty_backend_write(RunesTerm *t, char *buf, size_t len);
void runes_pty_backend_request_close(RunesTerm *t);
void runes_pty_backend_cleanup(RunesTerm *t);