=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.78 retrieving revision 1.79 diff -c -r1.78 -r1.79 *** src/usr.bin/tmux/tmux.h 2009/08/11 21:28:11 1.78 --- src/usr.bin/tmux/tmux.h 2009/08/12 09:41:59 1.79 *************** *** 1,4 **** ! /* $OpenBSD: tmux.h,v 1.78 2009/08/11 21:28:11 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: tmux.h,v 1.79 2009/08/12 09:41:59 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 1168,1189 **** int tty_open(struct tty *, const char *, char **); 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 *); ! void tty_cmd_clearendofline(struct tty *, struct tty_ctx *); ! void tty_cmd_clearendofscreen(struct tty *, struct tty_ctx *); ! void tty_cmd_clearline(struct tty *, struct tty_ctx *); ! void tty_cmd_clearscreen(struct tty *, struct tty_ctx *); ! void tty_cmd_clearstartofline(struct tty *, struct tty_ctx *); ! void tty_cmd_clearstartofscreen(struct tty *, struct tty_ctx *); ! void tty_cmd_deletecharacter(struct tty *, struct tty_ctx *); ! void tty_cmd_deleteline(struct tty *, struct tty_ctx *); ! void tty_cmd_insertcharacter(struct tty *, struct tty_ctx *); ! void tty_cmd_insertline(struct tty *, struct tty_ctx *); ! void tty_cmd_linefeed(struct tty *, struct tty_ctx *); ! void tty_cmd_utf8character(struct tty *, struct tty_ctx *); ! void tty_cmd_reverseindex(struct tty *, struct tty_ctx *); /* tty-term.c */ extern struct tty_terms tty_terms; --- 1168,1190 ---- int tty_open(struct tty *, const char *, char **); void tty_close(struct tty *); void tty_free(struct tty *); ! void tty_write(void (*)( ! struct tty *, const struct tty_ctx *), const struct tty_ctx *); ! void tty_cmd_alignmenttest(struct tty *, const struct tty_ctx *); ! void tty_cmd_cell(struct tty *, const struct tty_ctx *); ! void tty_cmd_clearendofline(struct tty *, const struct tty_ctx *); ! void tty_cmd_clearendofscreen(struct tty *, const struct tty_ctx *); ! void tty_cmd_clearline(struct tty *, const struct tty_ctx *); ! void tty_cmd_clearscreen(struct tty *, const struct tty_ctx *); ! void tty_cmd_clearstartofline(struct tty *, const struct tty_ctx *); ! void tty_cmd_clearstartofscreen(struct tty *, const struct tty_ctx *); ! void tty_cmd_deletecharacter(struct tty *, const struct tty_ctx *); ! void tty_cmd_deleteline(struct tty *, const struct tty_ctx *); ! void tty_cmd_insertcharacter(struct tty *, const struct tty_ctx *); ! void tty_cmd_insertline(struct tty *, const struct tty_ctx *); ! void tty_cmd_linefeed(struct tty *, const struct tty_ctx *); ! void tty_cmd_utf8character(struct tty *, const struct tty_ctx *); ! void tty_cmd_reverseindex(struct tty *, const struct tty_ctx *); /* tty-term.c */ extern struct tty_terms tty_terms;