diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-12 13:51:44 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-12 13:51:44 +0000 |
commit | 514d6fa1ec60563318c67806334c3b8d97c95b02 (patch) | |
tree | 9cef972ede33ea4639442b467753720f49f650ab /tmux.h | |
parent | f3404ee9229ae3acab973b93ca7a20eddd593c7f (diff) | |
download | rtmux-514d6fa1ec60563318c67806334c3b8d97c95b02.tar.gz rtmux-514d6fa1ec60563318c67806334c3b8d97c95b02.tar.bz2 rtmux-514d6fa1ec60563318c67806334c3b8d97c95b02.zip |
Accept colours as strings.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.56 2007-10-12 13:03:58 nicm Exp $ */ +/* $Id: tmux.h,v 1.57 2007-10-12 13:51:44 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -603,6 +603,8 @@ void input_store_two(struct buffer *, u_char, uint16_t, uint16_t); void input_translate_key(struct buffer *, int); /* screen.c */ +const char *screen_colourstring(u_char); +u_char screen_stringcolour(const char *); void screen_create(struct screen *, u_int, u_int); void screen_destroy(struct screen *); void screen_resize(struct screen *, u_int, u_int); |