aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2007-11-22 19:40:17 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2007-11-22 19:40:17 +0000
commit26c8303733c243b2181bb644ce6fa2b838de8e15 (patch)
treeebb190b6311e90b844cb3d4b403c0a83f8dbe1be /tmux.h
parent7b4556946db5f70b47e91484aac08f05ff32029c (diff)
downloadrtmux-26c8303733c243b2181bb644ce6fa2b838de8e15.tar.gz
rtmux-26c8303733c243b2181bb644ce6fa2b838de8e15.tar.bz2
rtmux-26c8303733c243b2181bb644ce6fa2b838de8e15.zip
Tidier code by moving mess into functions.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/tmux.h b/tmux.h
index 0107858e..601ad55f 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.95 2007-11-22 19:17:01 nicm Exp $ */
+/* $Id: tmux.h,v 1.96 2007-11-22 19:40:16 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -787,7 +787,9 @@ void screen_set_cell(struct screen *, u_int, u_int, u_char, u_char, u_char);
void screen_draw_start(struct screen_draw_ctx *,
struct screen *, struct buffer *, u_int, u_int);
void screen_draw_stop(struct screen_draw_ctx *);
-int screen_check_selection(struct screen_draw_ctx *, u_int, u_int);
+void screen_draw_set_selection(
+ struct screen_draw_ctx *, int, u_int, u_int, u_int, u_int);
+int screen_draw_check_selection(struct screen_draw_ctx *, u_int, u_int);
void screen_draw_get_cell(struct screen_draw_ctx *,
u_int, u_int, u_char *, u_char *, u_char *);
void screen_draw_move(struct screen_draw_ctx *, u_int, u_int);