[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.382 and 1.383

version 1.382, 2013/03/21 18:44:47 version 1.383, 2013/03/21 18:47:56
Line 2016 
Line 2016 
 void     screen_write_copy(struct screen_write_ctx *,  void     screen_write_copy(struct screen_write_ctx *,
              struct screen *, u_int, u_int, u_int, u_int);               struct screen *, u_int, u_int, u_int, u_int);
 void     screen_write_backspace(struct screen_write_ctx *);  void     screen_write_backspace(struct screen_write_ctx *);
   void     screen_write_mode_set(struct screen_write_ctx *, int);
   void     screen_write_mode_clear(struct screen_write_ctx *, int);
 void     screen_write_cursorup(struct screen_write_ctx *, u_int);  void     screen_write_cursorup(struct screen_write_ctx *, u_int);
 void     screen_write_cursordown(struct screen_write_ctx *, u_int);  void     screen_write_cursordown(struct screen_write_ctx *, u_int);
 void     screen_write_cursorright(struct screen_write_ctx *, u_int);  void     screen_write_cursorright(struct screen_write_ctx *, u_int);
Line 2030 
Line 2032 
 void     screen_write_clearendofline(struct screen_write_ctx *);  void     screen_write_clearendofline(struct screen_write_ctx *);
 void     screen_write_clearstartofline(struct screen_write_ctx *);  void     screen_write_clearstartofline(struct screen_write_ctx *);
 void     screen_write_cursormove(struct screen_write_ctx *, u_int, u_int);  void     screen_write_cursormove(struct screen_write_ctx *, u_int, u_int);
 void     screen_write_cursormode(struct screen_write_ctx *, int);  
 void     screen_write_reverseindex(struct screen_write_ctx *);  void     screen_write_reverseindex(struct screen_write_ctx *);
 void     screen_write_scrollregion(struct screen_write_ctx *, u_int, u_int);  void     screen_write_scrollregion(struct screen_write_ctx *, u_int, u_int);
 void     screen_write_insertmode(struct screen_write_ctx *, int);  
 void     screen_write_utf8mousemode(struct screen_write_ctx *, int);  
 void     screen_write_mousemode_on(struct screen_write_ctx *, int);  
 void     screen_write_mousemode_off(struct screen_write_ctx *);  
 void     screen_write_linefeed(struct screen_write_ctx *, int);  void     screen_write_linefeed(struct screen_write_ctx *, int);
 void     screen_write_linefeedscreen(struct screen_write_ctx *, int);  void     screen_write_linefeedscreen(struct screen_write_ctx *, int);
 void     screen_write_carriagereturn(struct screen_write_ctx *);  void     screen_write_carriagereturn(struct screen_write_ctx *);
 void     screen_write_kcursormode(struct screen_write_ctx *, int);  
 void     screen_write_kkeypadmode(struct screen_write_ctx *, int);  
 void     screen_write_clearendofscreen(struct screen_write_ctx *);  void     screen_write_clearendofscreen(struct screen_write_ctx *);
 void     screen_write_clearstartofscreen(struct screen_write_ctx *);  void     screen_write_clearstartofscreen(struct screen_write_ctx *);
 void     screen_write_clearscreen(struct screen_write_ctx *);  void     screen_write_clearscreen(struct screen_write_ctx *);
Line 2049 
Line 2044 
 void     screen_write_cell(struct screen_write_ctx *, const struct grid_cell *);  void     screen_write_cell(struct screen_write_ctx *, const struct grid_cell *);
 void     screen_write_setselection(struct screen_write_ctx *, u_char *, u_int);  void     screen_write_setselection(struct screen_write_ctx *, u_char *, u_int);
 void     screen_write_rawstring(struct screen_write_ctx *, u_char *, u_int);  void     screen_write_rawstring(struct screen_write_ctx *, u_char *, u_int);
 void     screen_write_bracketpaste(struct screen_write_ctx *, int);  
   
 /* screen-redraw.c */  /* screen-redraw.c */
 void     screen_redraw_screen(struct client *, int, int);  void     screen_redraw_screen(struct client *, int, int);

Legend:
Removed from v.1.382  
changed lines
  Added in v.1.383