diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-01 14:15:48 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-01 14:15:48 +0000 |
commit | 9d563c340b16dfe0d4b3cd789ffbeda0d4d1e589 (patch) | |
tree | 2a49ad8dd00abd39c51d125a3666d5f656705d77 /tmux.h | |
parent | 532757fd1c1886703a626a17f19c8c649a9e3d97 (diff) | |
download | rtmux-9d563c340b16dfe0d4b3cd789ffbeda0d4d1e589.tar.gz rtmux-9d563c340b16dfe0d4b3cd789ffbeda0d4d1e589.tar.bz2 rtmux-9d563c340b16dfe0d4b3cd789ffbeda0d4d1e589.zip |
Destroy screens properly.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.28 2007-09-30 13:02:14 nicm Exp $ */ +/* $Id: tmux.h,v 1.29 2007-10-01 14:15:48 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -565,6 +565,7 @@ void input_translate_key(struct buffer *, int); /* screen.c */ void screen_create(struct screen *, u_int, u_int); +void screen_destroy(struct screen *); void screen_resize(struct screen *, u_int, u_int); void screen_draw(struct screen *, struct buffer *, u_int, u_int); size_t screen_store_attributes(struct buffer *, u_char); |