aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-02-11 06:50:16 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-02-11 06:50:16 +0000
commite444b0b92ac9ce4e6aabeef48707e1bc36e0ad13 (patch)
treee8ee2c3da2b14e59f589e02bb6775b2e539444b1 /tmux.h
parentc6be7d3ee67fa5034480bf892440be14c8e10d45 (diff)
downloadrtmux-e444b0b92ac9ce4e6aabeef48707e1bc36e0ad13.tar.gz
rtmux-e444b0b92ac9ce4e6aabeef48707e1bc36e0ad13.tar.bz2
rtmux-e444b0b92ac9ce4e6aabeef48707e1bc36e0ad13.zip
Split most of tty_cmd_cell off to tty_cell. First step on making tty_cmd_* take
a window_pane for later use emulating scroll region.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 03f7e132..4a9e6d60 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.264 2009-02-11 06:31:09 nicm Exp $ */
+/* $Id: tmux.h,v 1.265 2009-02-11 06:50:15 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -1012,6 +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_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);