[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.397 and 1.398

version 1.397, 2013/03/24 09:54:10 version 1.398, 2013/03/24 09:57:59
Line 929 
Line 929 
         u_int            id;          u_int            id;
   
         struct window   *window;          struct window   *window;
   
         struct layout_cell *layout_cell;          struct layout_cell *layout_cell;
           struct layout_cell *saved_layout_cell;
   
         u_int            sx;          u_int            sx;
         u_int            sy;          u_int            sy;
Line 994 
Line 996 
   
         int              lastlayout;          int              lastlayout;
         struct layout_cell *layout_root;          struct layout_cell *layout_root;
           struct layout_cell *saved_layout_root;
   
         u_int            sx;          u_int            sx;
         u_int            sy;          u_int            sy;
Line 1003 
Line 1006 
 #define WINDOW_ACTIVITY 0x2  #define WINDOW_ACTIVITY 0x2
 #define WINDOW_REDRAW 0x4  #define WINDOW_REDRAW 0x4
 #define WINDOW_SILENCE 0x8  #define WINDOW_SILENCE 0x8
   #define WINDOW_ZOOMED 0x10
   
         struct options   options;          struct options   options;
   
Line 1929 
Line 1933 
 void     server_push_stderr(struct client *);  void     server_push_stderr(struct client *);
 int      server_set_stdin_callback(struct client *, void (*)(struct client *,  int      server_set_stdin_callback(struct client *, void (*)(struct client *,
              int, void *), void *, char **);               int, void *), void *, char **);
   void     server_unzoom_window(struct window *);
   
 /* status.c */  /* status.c */
 int      status_out_cmp(struct status_out *, struct status_out *);  int      status_out_cmp(struct status_out *, struct status_out *);
Line 2132 
Line 2137 
 void             window_set_active_pane(struct window *, struct window_pane *);  void             window_set_active_pane(struct window *, struct window_pane *);
 struct window_pane *window_add_pane(struct window *, u_int);  struct window_pane *window_add_pane(struct window *, u_int);
 void             window_resize(struct window *, u_int, u_int);  void             window_resize(struct window *, u_int, u_int);
   int              window_zoom(struct window_pane *);
   int              window_unzoom(struct window *);
 void             window_remove_pane(struct window *, struct window_pane *);  void             window_remove_pane(struct window *, struct window_pane *);
 struct window_pane *window_pane_at_index(struct window *, u_int);  struct window_pane *window_pane_at_index(struct window *, u_int);
 struct window_pane *window_pane_next_by_number(struct window *,  struct window_pane *window_pane_next_by_number(struct window *,
Line 2188 
Line 2195 
 u_int            layout_resize_check(struct layout_cell *, enum layout_type);  u_int            layout_resize_check(struct layout_cell *, enum layout_type);
 void             layout_resize_adjust(  void             layout_resize_adjust(
                      struct layout_cell *, enum layout_type, int);                       struct layout_cell *, enum layout_type, int);
 void             layout_init(struct window *);  void             layout_init(struct window *, struct window_pane *);
 void             layout_free(struct window *);  void             layout_free(struct window *);
 void             layout_resize(struct window *, u_int, u_int);  void             layout_resize(struct window *, u_int, u_int);
 void             layout_resize_pane(struct window_pane *, enum layout_type,  void             layout_resize_pane(struct window_pane *, enum layout_type,

Legend:
Removed from v.1.397  
changed lines
  Added in v.1.398