[BACK]Return to tmux.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/tmux.h between version 1.1162 and 1.1163

version 1.1162, 2022/03/08 11:28:40 version 1.1163, 2022/03/08 12:01:19
Line 1331 
Line 1331 
 struct tty {  struct tty {
         struct client   *client;          struct client   *client;
         struct event     start_timer;          struct event     start_timer;
         struct event     query_timer;          struct event     clipboard_timer;
   
         u_int            sx;          u_int            sx;
         u_int            sy;          u_int            sy;
Line 1764 
Line 1764 
 #define CLIENT_CONTROL_PAUSEAFTER 0x100000000ULL  #define CLIENT_CONTROL_PAUSEAFTER 0x100000000ULL
 #define CLIENT_CONTROL_WAITEXIT 0x200000000ULL  #define CLIENT_CONTROL_WAITEXIT 0x200000000ULL
 #define CLIENT_WINDOWSIZECHANGED 0x400000000ULL  #define CLIENT_WINDOWSIZECHANGED 0x400000000ULL
   #define CLIENT_CLIPBOARDBUFFER 0x800000000ULL
 #define CLIENT_ALLREDRAWFLAGS           \  #define CLIENT_ALLREDRAWFLAGS           \
         (CLIENT_REDRAWWINDOW|           \          (CLIENT_REDRAWWINDOW|           \
          CLIENT_REDRAWSTATUS|           \           CLIENT_REDRAWSTATUS|           \
Line 1844 
Line 1845 
   
         struct client_files      files;          struct client_files      files;
   
           u_int                   *clipboard_panes;
           u_int                    clipboard_npanes;
   
         TAILQ_ENTRY(client)      entry;          TAILQ_ENTRY(client)      entry;
 };  };
 TAILQ_HEAD(clients, client);  TAILQ_HEAD(clients, client);
Line 2232 
Line 2236 
 void    tty_region_off(struct tty *);  void    tty_region_off(struct tty *);
 void    tty_margin_off(struct tty *);  void    tty_margin_off(struct tty *);
 void    tty_cursor(struct tty *, u_int, u_int);  void    tty_cursor(struct tty *, u_int, u_int);
 void    tty_send_osc52_query(struct tty *);  void    tty_clipboard_query(struct tty *);
 void    tty_putcode(struct tty *, enum tty_code_code);  void    tty_putcode(struct tty *, enum tty_code_code);
 void    tty_putcode1(struct tty *, enum tty_code_code, int);  void    tty_putcode1(struct tty *, enum tty_code_code, int);
 void    tty_putcode2(struct tty *, enum tty_code_code, int, int);  void    tty_putcode2(struct tty *, enum tty_code_code, int, int);
Line 2678 
Line 2682 
 void     input_parse_buffer(struct window_pane *, u_char *, size_t);  void     input_parse_buffer(struct window_pane *, u_char *, size_t);
 void     input_parse_screen(struct input_ctx *, struct screen *,  void     input_parse_screen(struct input_ctx *, struct screen *,
              screen_write_init_ctx_cb, void *, u_char *, size_t);               screen_write_init_ctx_cb, void *, u_char *, size_t);
   void     input_reply_clipboard(struct bufferevent *, const char *, size_t,
                const char *);
   
 /* input-key.c */  /* input-key.c */
 void     input_key_build(void);  void     input_key_build(void);

Legend:
Removed from v.1.1162  
changed lines
  Added in v.1.1163