=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.220 retrieving revision 1.221 diff -u -r1.220 -r1.221 --- src/usr.bin/tmux/tmux.h 2010/05/05 23:24:23 1.220 +++ src/usr.bin/tmux/tmux.h 2010/05/23 19:42:19 1.221 @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.220 2010/05/05 23:24:23 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.221 2010/05/23 19:42:19 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -760,16 +760,16 @@ * Window mode. Windows can be in several modes and this is used to call the * right function to handle input and output. */ -struct client; +struct session; struct window; struct mouse_event; struct window_mode { struct screen *(*init)(struct window_pane *); void (*free)(struct window_pane *); void (*resize)(struct window_pane *, u_int, u_int); - void (*key)(struct window_pane *, struct client *, int); + void (*key)(struct window_pane *, struct session *, int); void (*mouse)(struct window_pane *, - struct client *, struct mouse_event *); + struct session *, struct mouse_event *); void (*timer)(struct window_pane *); }; @@ -1828,9 +1828,9 @@ int window_pane_set_mode( struct window_pane *, const struct window_mode *); void window_pane_reset_mode(struct window_pane *); -void window_pane_key(struct window_pane *, struct client *, int); +void window_pane_key(struct window_pane *, struct session *, int); void window_pane_mouse(struct window_pane *, - struct client *, struct mouse_event *); + struct session *, struct mouse_event *); int window_pane_visible(struct window_pane *); char *window_pane_search( struct window_pane *, const char *, u_int *);