[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.145 and 1.146

version 1.145, 2009/10/21 20:11:47 version 1.146, 2009/10/22 19:41:51
Line 1517 
Line 1517 
 extern struct clients dead_clients;  extern struct clients dead_clients;
 int      server_start(char *);  int      server_start(char *);
   
 /* server-msg.c */  /* server-client.c */
 int      server_msg_dispatch(struct client *);  void     server_client_create(int);
   void     server_client_lost(struct client *);
   void     server_client_callback(int, int, void *);
   void     server_client_loop(void);
   
   /* server-job.c */
   void     server_job_callback(int, int, void *);
   void     server_job_loop(void);
   
   /* server-window.c */
   void     server_window_callback(int, int, void *);
   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_error(struct client *, const char *);  void     server_write_error(struct client *, const char *);
Line 1850 
Line 1861 
 uint8_t          buffer_read8(struct buffer *);  uint8_t          buffer_read8(struct buffer *);
   
 /* buffer-poll.c */  /* buffer-poll.c */
 int              buffer_poll(struct pollfd *, struct buffer *, struct buffer *);  int              buffer_poll(int, int, struct buffer *, struct buffer *);
   
 /* log.c */  /* log.c */
 void             log_open_tty(int);  void             log_open_tty(int);

Legend:
Removed from v.1.145  
changed lines
  Added in v.1.146