[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.924 and 1.925

version 1.924, 2019/08/14 09:58:31 version 1.925, 2019/08/16 11:49:12
Line 1682 
Line 1682 
 #define SPAWN_EMPTY 0x40  #define SPAWN_EMPTY 0x40
 };  };
   
   /* Mode tree sort order. */
   struct mode_tree_sort_criteria {
           u_int   field;
           int     reversed;
   };
   
 /* tmux.c */  /* tmux.c */
 extern struct options   *global_options;  extern struct options   *global_options;
 extern struct options   *global_s_options;  extern struct options   *global_s_options;
Line 2473 
Line 2479 
 u_int            layout_set_previous(struct window *);  u_int            layout_set_previous(struct window *);
   
 /* mode-tree.c */  /* mode-tree.c */
 typedef void (*mode_tree_build_cb)(void *, u_int, uint64_t *, const char *);  typedef void (*mode_tree_build_cb)(void *, struct mode_tree_sort_criteria *,
                                      uint64_t *, const char *);
 typedef void (*mode_tree_draw_cb)(void *, void *, struct screen_write_ctx *,  typedef void (*mode_tree_draw_cb)(void *, void *, struct screen_write_ctx *,
              u_int, u_int);               u_int, u_int);
 typedef int (*mode_tree_search_cb)(void *, void *, const char *);  typedef int (*mode_tree_search_cb)(void *, void *, const char *);

Legend:
Removed from v.1.924  
changed lines
  Added in v.1.925