diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-09-10 18:59:29 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-09-10 18:59:29 +0000 |
commit | ded348064a20ae2fd43342d2bfeb628261399f70 (patch) | |
tree | 6c6faa31553370ded88bf30767a57e2d83074637 /tmux.h | |
parent | 19a2c87f049155439427e40d0cc78041da4d0b99 (diff) | |
download | rtmux-ded348064a20ae2fd43342d2bfeb628261399f70.tar.gz rtmux-ded348064a20ae2fd43342d2bfeb628261399f70.tar.bz2 rtmux-ded348064a20ae2fd43342d2bfeb628261399f70.zip |
Split colour functions from screen.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.186 2008-09-09 22:16:37 nicm Exp $ */ +/* $Id: tmux.h,v 1.187 2008-09-10 18:59:29 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1171,6 +1171,10 @@ void input_parse(struct window *); /* input-key.c */ void input_key(struct window *, int); +/* colour.c */ +const char *colour_tostring(u_char); +u_char colour_fromstring(const char *); + /* screen-display.c */ void screen_display_get_cell(struct screen *, u_int, u_int, u_char *, u_short *, u_char *, u_char *); @@ -1251,8 +1255,6 @@ void screen_redraw_lines(struct screen_redraw_ctx *, u_int, u_int); void screen_redraw_columns(struct screen_redraw_ctx *, u_int, u_int); /* screen.c */ -const char *screen_colourstring(u_char); -u_char screen_stringcolour(const char *); void screen_create(struct screen *, u_int, u_int, u_int); void screen_reset(struct screen *); void screen_destroy(struct screen *); |