diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2012-02-15 17:25:02 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2012-02-15 17:25:02 +0000 |
commit | fddbd44c185c44ad1fff37d5113519eda883e702 (patch) | |
tree | d9b892ff41a00d09b237ba1980b286b0bf43f22d /tmux.h | |
parent | 67949de0a173901fc741674c31bb971172442ec9 (diff) | |
download | rtmux-fddbd44c185c44ad1fff37d5113519eda883e702.tar.gz rtmux-fddbd44c185c44ad1fff37d5113519eda883e702.tar.bz2 rtmux-fddbd44c185c44ad1fff37d5113519eda883e702.zip |
Add a wrapper function tty_set_size from George Nachman.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1458,6 +1458,7 @@ void tty_putc(struct tty *, u_char); void tty_pututf8(struct tty *, const struct grid_utf8 *); void tty_init(struct tty *, int, char *); int tty_resize(struct tty *); +int tty_set_size(struct tty *tty, u_int sx, u_int sy); void tty_start_tty(struct tty *); void tty_stop_tty(struct tty *); void tty_set_title(struct tty *, const char *); |