[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.675 and 1.676

version 1.675, 2016/11/04 14:47:38 version 1.676, 2016/11/15 14:02:32
Line 1098 
Line 1098 
         u_int            rlower;          u_int            rlower;
         u_int            rupper;          u_int            rupper;
   
           u_int            rleft;
           u_int            rright;
   
         char            *termname;          char            *termname;
         struct tty_term *term;          struct tty_term *term;
   
Line 1118 
Line 1121 
         int              flags;          int              flags;
   
         int              term_flags;          int              term_flags;
           enum {
                   TTY_VT100,
                   TTY_VT101,
                   TTY_VT102,
                   TTY_VT220,
                   TTY_VT320,
                   TTY_VT420,
                   TTY_UNKNOWN
           } term_type;
   
         struct mouse_event mouse;          struct mouse_event mouse;
         int              mouse_drag_flag;          int              mouse_drag_flag;
Line 1653 
Line 1665 
             const struct window_pane *);              const struct window_pane *);
 void    tty_reset(struct tty *);  void    tty_reset(struct tty *);
 void    tty_region(struct tty *, u_int, u_int);  void    tty_region(struct tty *, u_int, u_int);
   void    tty_margin(struct tty *, u_int, u_int);
 void    tty_cursor(struct tty *, u_int, u_int);  void    tty_cursor(struct tty *, u_int, u_int);
 void    tty_putcode(struct tty *, enum tty_code_code);  void    tty_putcode(struct tty *, enum tty_code_code);
 void    tty_putcode1(struct tty *, enum tty_code_code, int);  void    tty_putcode1(struct tty *, enum tty_code_code, int);
Line 1677 
Line 1690 
 int     tty_open(struct tty *, char **);  int     tty_open(struct tty *, char **);
 void    tty_close(struct tty *);  void    tty_close(struct tty *);
 void    tty_free(struct tty *);  void    tty_free(struct tty *);
   void    tty_set_type(struct tty *, int);
 void    tty_write(void (*)(struct tty *, const struct tty_ctx *),  void    tty_write(void (*)(struct tty *, const struct tty_ctx *),
             struct tty_ctx *);              struct tty_ctx *);
 void    tty_cmd_alignmenttest(struct tty *, const struct tty_ctx *);  void    tty_cmd_alignmenttest(struct tty *, const struct tty_ctx *);

Legend:
Removed from v.1.675  
changed lines
  Added in v.1.676