aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-02-11 07:02:34 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-02-11 07:02:34 +0000
commit91c9d952793249868c7d4dea78a113fcf288929c (patch)
tree5583403ccc70ba034702f16c1a79cce434c7b357 /tmux.h
parente444b0b92ac9ce4e6aabeef48707e1bc36e0ad13 (diff)
downloadrtmux-91c9d952793249868c7d4dea78a113fcf288929c.tar.gz
rtmux-91c9d952793249868c7d4dea78a113fcf288929c.tar.bz2
rtmux-91c9d952793249868c7d4dea78a113fcf288929c.zip
Change tty_cmd_* to use a window_pane.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/tmux.h b/tmux.h
index 4a9e6d60..19980417 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.265 2009-02-11 06:50:15 nicm Exp $ */
+/* $Id: tmux.h,v 1.266 2009-02-11 07:02:34 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -1012,8 +1012,8 @@ long long options_get_number(struct options *, const char *);
/* tty.c */
void tty_cursor(struct tty *, u_int, u_int, u_int);
-void tty_cell(
- struct tty *, struct screen *, u_int, struct grid_cell *);
+void tty_cell(struct tty *,
+ struct screen *, u_int, const struct grid_cell *);
void tty_putcode(struct tty *, enum tty_code_code);
void tty_putcode1(struct tty *, enum tty_code_code, int);
void tty_putcode2(struct tty *, enum tty_code_code, int, int);
@@ -1027,10 +1027,10 @@ void tty_update_mode(struct tty *, int);
int tty_open(struct tty *, char **);
void tty_close(struct tty *, int);
void tty_free(struct tty *, int);
-void tty_write(struct tty *,
- struct screen *, u_int, enum tty_cmd, ...);
-void tty_vwrite(struct tty *,
- struct screen *, u_int, enum tty_cmd, va_list);
+void tty_write(
+ struct tty *, struct window_pane *, enum tty_cmd, ...);
+void tty_vwrite(
+ struct tty *, struct window_pane *, enum tty_cmd, va_list);
/* tty-term.c */
extern struct tty_terms tty_terms;