diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-09-10 19:15:06 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-09-10 19:15:06 +0000 |
commit | f07cedf04806b9d02d4754e37c7a81536ae30e33 (patch) | |
tree | bf3a50a6ebb1d1c496b695439d8de8e39ec84bd9 /tmux.h | |
parent | ded348064a20ae2fd43342d2bfeb628261399f70 (diff) | |
download | rtmux-f07cedf04806b9d02d4754e37c7a81536ae30e33.tar.gz rtmux-f07cedf04806b9d02d4754e37c7a81536ae30e33.tar.bz2 rtmux-f07cedf04806b9d02d4754e37c7a81536ae30e33.zip |
Rename some functions.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.187 2008-09-10 18:59:29 nicm Exp $ */ +/* $Id: tmux.h,v 1.188 2008-09-10 19:15:04 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1255,9 +1255,9 @@ void screen_redraw_lines(struct screen_redraw_ctx *, u_int, u_int); void screen_redraw_columns(struct screen_redraw_ctx *, u_int, u_int); /* screen.c */ -void screen_create(struct screen *, u_int, u_int, u_int); -void screen_reset(struct screen *); -void screen_destroy(struct screen *); +void screen_init(struct screen *, u_int, u_int, u_int); +void screen_reinit(struct screen *); +void screen_free(struct screen *); void screen_resize(struct screen *, u_int, u_int); void screen_expand_line(struct screen *, u_int, u_int); void screen_reduce_line(struct screen *, u_int, u_int); |