Add a wrapper function tty_set_size from George Nachman.

This commit is contained in:
Nicholas Marriott
2012-02-15 17:25:02 +00:00
parent 67949de0a1
commit fddbd44c18
2 changed files with 11 additions and 3 deletions

1
tmux.h
View File

@@ -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 *);