[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.52 and 1.53

version 1.52, 2009/07/23 12:33:48 version 1.53, 2009/07/23 20:24:27
Line 845 
Line 845 
         struct buffer   *srv_in;          struct buffer   *srv_in;
         struct buffer   *srv_out;          struct buffer   *srv_out;
   
 #define CCTX_DETACH 0x1          enum {
 #define CCTX_EXIT 0x2                  CCTX_DETACH,
 #define CCTX_SHUTDOWN 0x4                  CCTX_EXIT,
         int              flags;                  CCTX_DIED,
                   CCTX_SHUTDOWN,
           } exittype;
           const char      *errstr;
 };  };
   
 /* Key/command line command. */  /* Key/command line command. */
Line 1261 
Line 1264 
 int      client_main(struct client_ctx *);  int      client_main(struct client_ctx *);
   
 /* client-msg.c */  /* client-msg.c */
 int      client_msg_dispatch(struct client_ctx *, char **);  int      client_msg_dispatch(struct client_ctx *);
   
 /* client-fn.c */  /* client-fn.c */
 void     client_write_server(struct client_ctx *, enum hdrtype, void *, size_t);  void     client_write_server(struct client_ctx *, enum hdrtype, void *, size_t);

Legend:
Removed from v.1.52  
changed lines
  Added in v.1.53