=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.113 retrieving revision 1.114 diff -c -r1.113 -r1.114 *** src/usr.bin/tmux/tmux.h 2009/09/23 06:05:02 1.113 --- src/usr.bin/tmux/tmux.h 2009/09/23 06:12:58 1.114 *************** *** 1,4 **** ! /* $OpenBSD: tmux.h,v 1.113 2009/09/23 06:05:02 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: tmux.h,v 1.114 2009/09/23 06:12:58 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 19,25 **** #ifndef TMUX_H #define TMUX_H ! #define PROTOCOL_VERSION 2 #include #include --- 19,25 ---- #ifndef TMUX_H #define TMUX_H ! #define PROTOCOL_VERSION 3 #include #include *************** *** 337,352 **** #define IDENTIFY_88COLOURS 0x4 #define IDENTIFY_HASDEFAULTS 0x8 int flags; - - u_int sx; - u_int sy; }; - struct msg_resize_data { - u_int sx; - u_int sy; - }; - struct msg_unlock_data { char pass[PASS_MAX]; }; --- 337,344 ---- *************** *** 1199,1204 **** --- 1191,1197 ---- void tty_putc(struct tty *, u_char); void tty_pututf8(struct tty *, const struct grid_utf8 *); void tty_init(struct tty *, int, char *); + void tty_resize(struct tty *); void tty_start_tty(struct tty *); void tty_stop_tty(struct tty *); void tty_detect_utf8(struct tty *);