[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.1062 and 1.1063

version 1.1062, 2020/06/02 20:51:46 version 1.1063, 2020/06/05 07:33:57
Line 1575 
Line 1575 
         struct cmdq_list *queue;          struct cmdq_list *queue;
   
         struct client_windows windows;          struct client_windows windows;
   
         struct control_state *control_state;          struct control_state *control_state;
           u_int            pause_age;
   
         pid_t            pid;          pid_t            pid;
         int              fd;          int              fd;
Line 1643 
Line 1645 
 #define CLIENT_REDRAWPANES 0x20000000  #define CLIENT_REDRAWPANES 0x20000000
 #define CLIENT_NOFORK 0x40000000  #define CLIENT_NOFORK 0x40000000
 #define CLIENT_ACTIVEPANE 0x80000000ULL  #define CLIENT_ACTIVEPANE 0x80000000ULL
   #define CLIENT_CONTROL_PAUSEAFTER 0x100000000ULL
 #define CLIENT_ALLREDRAWFLAGS           \  #define CLIENT_ALLREDRAWFLAGS           \
         (CLIENT_REDRAWWINDOW|           \          (CLIENT_REDRAWWINDOW|           \
          CLIENT_REDRAWSTATUS|           \           CLIENT_REDRAWSTATUS|           \
Line 2449 
Line 2452 
 void     resize_window(struct window *, u_int, u_int, int, int);  void     resize_window(struct window *, u_int, u_int, int, int);
 void     default_window_size(struct client *, struct session *, struct window *,  void     default_window_size(struct client *, struct session *, struct window *,
              u_int *, u_int *, u_int *, u_int *, int);               u_int *, u_int *, u_int *, u_int *, int);
 void     recalculate_size(struct window *);  void     recalculate_size(struct window *, int);
 void     recalculate_sizes(void);  void     recalculate_sizes(void);
   void     recalculate_sizes_now(int);
   
 /* input.c */  /* input.c */
 struct input_ctx *input_init(struct window_pane *, struct bufferevent *);  struct input_ctx *input_init(struct window_pane *, struct bufferevent *);
Line 2837 
Line 2841 
 char    *parse_window_name(const char *);  char    *parse_window_name(const char *);
   
 /* control.c */  /* control.c */
 void    control_flush(struct client *);  void    control_discard(struct client *);
 void    control_start(struct client *);  void    control_start(struct client *);
 void    control_stop(struct client *);  void    control_stop(struct client *);
 void    control_set_pane_on(struct client *, struct window_pane *);  void    control_set_pane_on(struct client *, struct window_pane *);
 void    control_set_pane_off(struct client *, struct window_pane *);  void    control_set_pane_off(struct client *, struct window_pane *);
   void    control_continue_pane(struct client *, struct window_pane *);
 struct window_pane_offset *control_pane_offset(struct client *,  struct window_pane_offset *control_pane_offset(struct client *,
            struct window_pane *, int *);             struct window_pane *, int *);
 void    control_reset_offsets(struct client *);  void    control_reset_offsets(struct client *);

Legend:
Removed from v.1.1062  
changed lines
  Added in v.1.1063