diff options
author | nicm <nicm> | 2019-11-28 09:05:34 +0000 |
---|---|---|
committer | nicm <nicm> | 2019-11-28 09:05:34 +0000 |
commit | 067604bf8cb23c1a208d26d94dbae7c2ab46dabf (patch) | |
tree | d8692a46c84f0bb155282f9208311f8f8646f9cd /tmux.h | |
parent | 7fb8eec8f13bf54b3a6c06763d2cf0b29df51281 (diff) | |
download | rtmux-067604bf8cb23c1a208d26d94dbae7c2ab46dabf.tar.gz rtmux-067604bf8cb23c1a208d26d94dbae7c2ab46dabf.tar.bz2 rtmux-067604bf8cb23c1a208d26d94dbae7c2ab46dabf.zip |
Store xpixel/ypixel from TIOCGWINSZ and add formats.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 *); |