=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.436 retrieving revision 1.437 diff -c -r1.436 -r1.437 *** src/usr.bin/tmux/tmux.h 2014/01/31 14:19:24 1.436 --- src/usr.bin/tmux/tmux.h 2014/02/23 00:53:06 1.437 *************** *** 1,4 **** ! /* $OpenBSD: tmux.h,v 1.436 2014/01/31 14:19:24 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: tmux.h,v 1.437 2014/02/23 00:53:06 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 1650,1656 **** void tty_update_mode(struct tty *, int, struct screen *); void tty_force_cursor_colour(struct tty *, const char *); 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 *); void tty_free(struct tty *); void tty_write( --- 1650,1656 ---- void tty_update_mode(struct tty *, int, struct screen *); void tty_force_cursor_colour(struct tty *, const char *); void tty_draw_line(struct tty *, struct screen *, u_int, u_int, u_int); ! int tty_open(struct tty *, char **); void tty_close(struct tty *); void tty_free(struct tty *); void tty_write( *************** *** 1679,1685 **** /* tty-term.c */ extern struct tty_terms tty_terms; extern const struct tty_term_code_entry tty_term_codes[NTTYCODE]; ! struct tty_term *tty_term_find(char *, int, const char *, char **); void tty_term_free(struct tty_term *); int tty_term_has(struct tty_term *, enum tty_code_code); const char *tty_term_string(struct tty_term *, enum tty_code_code); --- 1679,1685 ---- /* tty-term.c */ extern struct tty_terms tty_terms; extern const struct tty_term_code_entry tty_term_codes[NTTYCODE]; ! struct tty_term *tty_term_find(char *, int, char **); void tty_term_free(struct tty_term *); int tty_term_has(struct tty_term *, enum tty_code_code); const char *tty_term_string(struct tty_term *, enum tty_code_code); *************** *** 1893,1899 **** /* server-client.c */ void server_client_handle_key(struct client *, int); void server_client_create(int); ! int server_client_open(struct client *, struct session *, char **); void server_client_lost(struct client *); void server_client_callback(int, short, void *); void server_client_status_timer(void); --- 1893,1899 ---- /* server-client.c */ void server_client_handle_key(struct client *, int); void server_client_create(int); ! int server_client_open(struct client *, char **); void server_client_lost(struct client *); void server_client_callback(int, short, void *); void server_client_status_timer(void);