diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-01-09 23:57:42 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-01-09 23:57:42 +0000 |
commit | 3ed5aa3e72bf0e720f1ea35159a1d15b1f02e0ff (patch) | |
tree | d6d9dc50461b010cd9da225afacf9d4081d29bc6 /screen-redraw.c | |
parent | e13445875451d66fcc8b0d8b4995321560d03b80 (diff) | |
download | rtmux-3ed5aa3e72bf0e720f1ea35159a1d15b1f02e0ff.tar.gz rtmux-3ed5aa3e72bf0e720f1ea35159a1d15b1f02e0ff.tar.bz2 rtmux-3ed5aa3e72bf0e720f1ea35159a1d15b1f02e0ff.zip |
Build array of codes, stop using ncurses global variables and push ncurses crap into tty-term.c.
Diffstat (limited to 'screen-redraw.c')
-rw-r--r-- | screen-redraw.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/screen-redraw.c b/screen-redraw.c index 4f6286f5..7b3a8ec0 100644 --- a/screen-redraw.c +++ b/screen-redraw.c @@ -1,4 +1,4 @@ -/* $Id: screen-redraw.c,v 1.14 2008-12-08 16:19:51 nicm Exp $ */ +/* $Id: screen-redraw.c,v 1.15 2009-01-09 23:57:42 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -52,7 +52,7 @@ screen_redraw_start_session(struct screen_redraw_ctx *ctx, struct session *s) /* Initialise for redrawing. */ void screen_redraw_start(struct screen_redraw_ctx *ctx, - struct screen *s, void (*write)(void *, int, ...), void *data) + struct screen *s, void (*write)(void *, enum tty_cmd, ...), void *data) { ctx->write = write; ctx->data = data; |