From bfccbc67d193f91e6825e491f4cb6b466dcf255a Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Mon, 1 Oct 2007 14:53:29 +0000 Subject: Simple status line. --- tmux.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index f4668db3..4851ffe9 100644 --- a/tmux.h +++ b/tmux.h @@ -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 @@ -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 *); -- cgit