=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.995 retrieving revision 1.996 diff -c -r1.995 -r1.996 *** src/usr.bin/tmux/tmux.h 2020/04/16 07:28:36 1.995 --- src/usr.bin/tmux/tmux.h 2020/04/16 13:35:24 1.996 *************** *** 1,4 **** ! /* $OpenBSD: tmux.h,v 1.995 2020/04/16 07:28:36 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: tmux.h,v 1.996 2020/04/16 13:35:24 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 452,457 **** --- 452,458 ---- TTYC_SMUL, TTYC_SMXX, TTYC_SS, + TTYC_SYNC, TTYC_TC, TTYC_TSL, TTYC_U8, *************** *** 1181,1186 **** --- 1182,1188 ---- #define TERM_DECSLRM 0x4 #define TERM_DECFRA 0x8 #define TERM_RGBCOLOURS 0x10 + #define TERM_SYNC 0x20 int flags; LIST_ENTRY(tty_term) entry; *************** *** 1949,1954 **** --- 1951,1958 ---- void tty_update_mode(struct tty *, int, struct screen *); void tty_draw_line(struct tty *, struct window_pane *, struct screen *, u_int, u_int, u_int, u_int, u_int); + void tty_sync_start(struct tty *); + void tty_sync_end(struct tty *); int tty_open(struct tty *, char **); void tty_close(struct tty *); void tty_free(struct tty *); *************** *** 1976,1981 **** --- 1980,1987 ---- void tty_cmd_reverseindex(struct tty *, const struct tty_ctx *); void tty_cmd_setselection(struct tty *, const struct tty_ctx *); void tty_cmd_rawstring(struct tty *, const struct tty_ctx *); + void tty_cmd_syncstart(struct tty *, const struct tty_ctx *); + void tty_cmd_syncend(struct tty *, const struct tty_ctx *); /* tty-term.c */ extern struct tty_terms tty_terms;