diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-04 19:03:52 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-04 19:03:52 +0000 |
commit | 1f9a8e70d90265de8a3e1b0a981d3ef5b1352e52 (patch) | |
tree | 018210dd36bc8ec617921a75f2928aff488327e5 /tmux.h | |
parent | 418fb3938d2e8da39a4776d01ff3f65aca2c686f (diff) | |
download | rtmux-1f9a8e70d90265de8a3e1b0a981d3ef5b1352e52.tar.gz rtmux-1f9a8e70d90265de8a3e1b0a981d3ef5b1352e52.tar.bz2 rtmux-1f9a8e70d90265de8a3e1b0a981d3ef5b1352e52.zip |
Incomplete resize support.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.47 2007-10-04 11:52:03 nicm Exp $ */ +/* $Id: tmux.h,v 1.48 2007-10-04 19:03:52 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -593,14 +593,19 @@ void server_write_session( void server_write_window( struct window *, enum hdrtype, const void *, size_t); void server_redraw_status(struct client *); +void server_clear_client(struct client *); void server_redraw_client(struct client *); void server_redraw_session(struct session *); +void server_clear_window(struct window *); void server_redraw_window(struct window *); void server_write_message(struct client *, const char *, ...); /* status.c */ void status_write(struct client *c); +/* resize.c */ +void recalculate_sizes(void); + /* input.c */ void input_init(struct input_ctx *, struct screen *); void input_free(struct input_ctx *); |