=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.75 retrieving revision 1.76 diff -u -r1.75 -r1.76 --- src/usr.bin/tmux/tmux.h 2009/08/11 17:18:35 1.75 +++ src/usr.bin/tmux/tmux.h 2009/08/11 19:32:25 1.76 @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.75 2009/08/11 17:18:35 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.76 2009/08/11 19:32:25 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -868,6 +868,7 @@ #define TTY_FREEZE 0x2 #define TTY_ESCAPE 0x4 #define TTY_UTF8 0x8 +#define TTY_STARTED 0x10 int flags; int term_flags; @@ -1164,8 +1165,8 @@ void tty_update_mode(struct tty *, int); void tty_draw_line(struct tty *, struct screen *, u_int, u_int, u_int); int tty_open(struct tty *, const char *, char **); -void tty_close(struct tty *, int); -void tty_free(struct tty *, int); +void tty_close(struct tty *); +void tty_free(struct tty *); void tty_write(void (*)(struct tty *, struct tty_ctx *), struct tty_ctx *); void tty_cmd_alignmenttest(struct tty *, struct tty_ctx *); void tty_cmd_cell(struct tty *, struct tty_ctx *);