diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-01 14:53:29 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-01 14:53:29 +0000 |
commit | bfccbc67d193f91e6825e491f4cb6b466dcf255a (patch) | |
tree | 75cf85861a25d849306c461a4779e3ddfb2f4ec5 /tmux.h | |
parent | 872696f7819f20eb5fdaa53c16221cf614952eb7 (diff) | |
download | rtmux-bfccbc67d193f91e6825e491f4cb6b466dcf255a.tar.gz rtmux-bfccbc67d193f91e6825e491f4cb6b466dcf255a.tar.bz2 rtmux-bfccbc67d193f91e6825e491f4cb6b466dcf255a.zip |
Simple status line.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.30 2007-10-01 14:18:42 nicm Exp $ */ +/* $Id: tmux.h,v 1.31 2007-10-01 14:53:29 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -499,6 +499,7 @@ struct client_ctx { extern volatile sig_atomic_t sigwinch; extern volatile sig_atomic_t sigterm; extern int debug_level; +extern u_int status_lines; int usage(const char *); void logfile(const char *); void siginit(void); @@ -547,6 +548,9 @@ void server_write_clients( void server_window_changed(struct client *); void server_draw_client(struct client *, u_int, u_int); +/* status.c */ +void status_write(struct client *c); + /* input.c */ void input_init(struct input_ctx *, struct screen *); void input_free(struct input_ctx *); |