aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2008-09-10 18:59:29 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2008-09-10 18:59:29 +0000
commitded348064a20ae2fd43342d2bfeb628261399f70 (patch)
tree6c6faa31553370ded88bf30767a57e2d83074637 /tmux.h
parent19a2c87f049155439427e40d0cc78041da4d0b99 (diff)
downloadrtmux-ded348064a20ae2fd43342d2bfeb628261399f70.tar.gz
rtmux-ded348064a20ae2fd43342d2bfeb628261399f70.tar.bz2
rtmux-ded348064a20ae2fd43342d2bfeb628261399f70.zip
Split colour functions from screen.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/tmux.h b/tmux.h
index 77fb6680..fc1943b9 100644
--- a/tmux.h
+++ b/tmux.h
@@ -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 *);