[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.540 and 1.541

version 1.540, 2015/08/29 00:29:15 version 1.541, 2015/08/29 08:30:54
Line 874 
Line 874 
         struct event     name_event;          struct event     name_event;
         struct timeval   name_time;          struct timeval   name_time;
   
         struct timeval   silence_timer;          struct event     alerts_timer;
   
         struct timeval   activity_time;          struct timeval   activity_time;
   
         struct window_pane *active;          struct window_pane *active;
Line 1829 
Line 1830 
 int      key_string_lookup_string(const char *);  int      key_string_lookup_string(const char *);
 const char *key_string_lookup_key(int);  const char *key_string_lookup_key(int);
   
   /* alerts.c */
   void    alerts_reset_all(void);
   void    alerts_queue(struct window *, int);
   
 /* server.c */  /* server.c */
 extern struct clients clients;  extern struct clients clients;
 extern struct clients dead_clients;  extern struct clients dead_clients;
Line 1856 
Line 1861 
 void     server_client_status_timer(void);  void     server_client_status_timer(void);
 void     server_client_loop(void);  void     server_client_loop(void);
   
 /* server-window.c */  
 void     server_window_loop(void);  
   
 /* server-fn.c */  /* server-fn.c */
 void     server_fill_environ(struct session *, struct environ *);  void     server_fill_environ(struct session *, struct environ *);
 void     server_write_ready(struct client *);  void     server_write_ready(struct client *);
Line 2084 
Line 2086 
 void             winlink_stack_remove(struct winlink_stack *, struct winlink *);  void             winlink_stack_remove(struct winlink_stack *, struct winlink *);
 struct window   *window_find_by_id_str(const char *);  struct window   *window_find_by_id_str(const char *);
 struct window   *window_find_by_id(u_int);  struct window   *window_find_by_id(u_int);
   void             window_update_activity(struct window *);
 struct window   *window_create1(u_int, u_int);  struct window   *window_create1(u_int, u_int);
 struct window   *window_create(const char *, int, char **, const char *,  struct window   *window_create(const char *, int, char **, const char *,
                      const char *, int, struct environ *, struct termios *,                       const char *, int, struct environ *, struct termios *,

Legend:
Removed from v.1.540  
changed lines
  Added in v.1.541