summaryrefslogtreecommitdiffstats
path: root/tmux.h
diff options
context:
space:
mode:
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 5b6a1716..d2a4196a 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1148,6 +1148,8 @@ struct tty {
u_int sx;
u_int sy;
+ u_int xpixel;
+ u_int ypixel;
u_int cx;
u_int cy;
@@ -1927,7 +1929,7 @@ void tty_putc(struct tty *, u_char);
void tty_putn(struct tty *, const void *, size_t, u_int);
int tty_init(struct tty *, struct client *, int, char *);
void tty_resize(struct tty *);
-void tty_set_size(struct tty *, u_int, u_int);
+void tty_set_size(struct tty *, u_int, u_int, u_int, u_int);
void tty_start_tty(struct tty *);
void tty_stop_tty(struct tty *);
void tty_set_title(struct tty *, const char *);