[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.960 and 1.961

version 1.960, 2020/03/19 13:43:18 version 1.961, 2020/03/19 14:03:49
Line 810 
Line 810 
         u_int                    width;          u_int                    width;
 };  };
 typedef void (*menu_choice_cb)(struct menu *, u_int, key_code, void *);  typedef void (*menu_choice_cb)(struct menu *, u_int, key_code, void *);
 #define MENU_NOMOUSE 0x1  
   
 /*  /*
  * Window mode. Windows can be in several modes and this is used to call the   * Window mode. Windows can be in several modes and this is used to call the
Line 2288 
Line 2287 
 void     recalculate_sizes(void);  void     recalculate_sizes(void);
   
 /* input.c */  /* input.c */
 void     input_init(struct window_pane *);  struct input_ctx *input_init(struct window_pane *);
 void     input_free(struct window_pane *);  void     input_free(struct input_ctx *);
 void     input_reset(struct window_pane *, int);  void     input_reset(struct input_ctx *, int);
 struct evbuffer *input_pending(struct window_pane *);  struct evbuffer *input_pending(struct input_ctx *);
 void     input_parse(struct window_pane *);  void     input_parse_pane(struct window_pane *);
 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 *, u_char *,
                size_t);
   
 /* input-key.c */  /* input-key.c */
 int      input_key(struct window_pane *, key_code, struct mouse_event *);  int      input_key_pane(struct window_pane *, key_code, struct mouse_event *);
   int      input_key(struct window_pane *, struct screen *, struct bufferevent *,
                key_code);
   
 /* xterm-keys.c */  /* xterm-keys.c */
 char    *xterm_keys_lookup(key_code);  char    *xterm_keys_lookup(key_code);
Line 2731 
Line 2734 
 __dead void printflike(1, 2) fatalx(const char *, ...);  __dead void printflike(1, 2) fatalx(const char *, ...);
   
 /* menu.c */  /* menu.c */
   #define MENU_NOMOUSE 0x1
 struct menu     *menu_create(const char *);  struct menu     *menu_create(const char *);
 void             menu_add_items(struct menu *, const struct menu_item *,  void             menu_add_items(struct menu *, const struct menu_item *,
                     struct cmdq_item *, struct client *,                      struct cmdq_item *, struct client *,
Line 2738 
Line 2742 
 void             menu_add_item(struct menu *, const struct menu_item *,  void             menu_add_item(struct menu *, const struct menu_item *,
                     struct cmdq_item *, struct client *,                      struct cmdq_item *, struct client *,
                     struct cmd_find_state *);                      struct cmd_find_state *);
   
 void             menu_free(struct menu *);  void             menu_free(struct menu *);
 int              menu_display(struct menu *, int, struct cmdq_item *, u_int,  int              menu_display(struct menu *, int, struct cmdq_item *, u_int,
                     u_int, struct client *, struct cmd_find_state *,                      u_int, struct client *, struct cmd_find_state *,

Legend:
Removed from v.1.960  
changed lines
  Added in v.1.961