[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.1143 and 1.1144

version 1.1143, 2021/10/05 12:46:02 version 1.1144, 2021/10/11 10:55:30
Line 2073 
Line 2073 
 #define JOB_NOWAIT 0x1  #define JOB_NOWAIT 0x1
 #define JOB_KEEPWRITE 0x2  #define JOB_KEEPWRITE 0x2
 #define JOB_PTY 0x4  #define JOB_PTY 0x4
 struct job      *job_run(const char *, int, char **, struct session *,  struct job      *job_run(const char *, int, char **, struct environ *,
                      const char *, job_update_cb, job_complete_cb, job_free_cb,                       struct session *, const char *, job_update_cb,
                      void *, int, int, int);                       job_complete_cb, job_free_cb, void *, int, int, int);
 void             job_free(struct job *);  void             job_free(struct job *);
 int              job_transfer(struct job *, pid_t *, char *, size_t);  int              job_transfer(struct job *, pid_t *, char *, size_t);
 void             job_resize(struct job *, u_int, u_int);  void             job_resize(struct job *, u_int, u_int);
Line 3105 
Line 3105 
 typedef void (*popup_close_cb)(int, void *);  typedef void (*popup_close_cb)(int, void *);
 typedef void (*popup_finish_edit_cb)(char *, size_t, void *);  typedef void (*popup_finish_edit_cb)(char *, size_t, void *);
 int              popup_display(int, struct cmdq_item *, u_int, u_int, u_int,  int              popup_display(int, struct cmdq_item *, u_int, u_int, u_int,
                     u_int, const char *, int, char **, const char *,                      u_int, struct environ *, const char *, int, char **,
                     struct client *, struct session *, popup_close_cb, void *);                      const char *, struct client *, struct session *,
                       popup_close_cb, void *);
 int              popup_editor(struct client *, const char *, size_t,  int              popup_editor(struct client *, const char *, size_t,
                     popup_finish_edit_cb, void *);                      popup_finish_edit_cb, void *);
   

Legend:
Removed from v.1.1143  
changed lines
  Added in v.1.1144