[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.944 and 1.945

version 1.944, 2019/12/30 21:24:55 version 1.945, 2020/01/12 21:07:07
Line 1168 
Line 1168 
         struct tty_code *codes;          struct tty_code *codes;
   
 #define TERM_256COLOURS 0x1  #define TERM_256COLOURS 0x1
 #define TERM_EARLYWRAP 0x2  #define TERM_NOXENL 0x2
   #define TERM_DECSLRM 0x4
   #define TERM_DECFRA 0x8
         int              flags;          int              flags;
   
         LIST_ENTRY(tty_term) entry;          LIST_ENTRY(tty_term) entry;
Line 1230 
Line 1232 
         struct tty_term *term;          struct tty_term *term;
         char            *term_name;          char            *term_name;
         int              term_flags;          int              term_flags;
         enum {  
                 TTY_VT100,  
                 TTY_VT101,  
                 TTY_VT102,  
                 TTY_VT220,  
                 TTY_VT320,  
                 TTY_VT420,  
                 TTY_VT520,  
                 TTY_UNKNOWN  
         } term_type;  
   
         u_int            mouse_last_x;          u_int            mouse_last_x;
         u_int            mouse_last_y;          u_int            mouse_last_y;
Line 1253 
Line 1245 
         struct event     key_timer;          struct event     key_timer;
         struct tty_key  *key_tree;          struct tty_key  *key_tree;
 };  };
 #define TTY_TYPES \  
         { "VT100", \  
           "VT101", \  
           "VT102", \  
           "VT220", \  
           "VT320", \  
           "VT420", \  
           "VT520", \  
           "Unknown" }  
   
 /* TTY command context. */  /* TTY command context. */
 struct tty_ctx {  struct tty_ctx {
Line 1992 
Line 1975 
 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_set_flags(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.944  
changed lines
  Added in v.1.945