aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2017-10-20 12:36:29 +0100
committerThomas Adam <thomas@xteddy.org>2017-10-20 12:36:29 +0100
commit31901e3c07ca3f4e51ab504aa2d752f614e761be (patch)
tree4ba325087795c2fd089c14bbc095b6b5db75b19f /tmux.h
parenta34de2e378e0cff7191a426117f44e8b81543445 (diff)
parent2f6935a630507351233d6296cc6ec9a08d6a702a (diff)
downloadrtmux-31901e3c07ca3f4e51ab504aa2d752f614e761be.tar.gz
rtmux-31901e3c07ca3f4e51ab504aa2d752f614e761be.tar.bz2
rtmux-31901e3c07ca3f4e51ab504aa2d752f614e761be.zip
Merge branch 'obsd-master'
Conflicts: server-fn.c
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/tmux.h b/tmux.h
index 9cb38546..e1f93b6d 100644
--- a/tmux.h
+++ b/tmux.h
@@ -782,6 +782,8 @@ struct window_pane {
#define PANE_INPUTOFF 0x40
#define PANE_CHANGED 0x80
#define PANE_EXITED 0x100
+#define PANE_STATUSREADY 0x200
+#define PANE_STATUSDRAWN 0x400
int argc;
char **argv;
@@ -1383,6 +1385,7 @@ struct client {
#define CLIENT_DOUBLECLICK 0x100000
#define CLIENT_TRIPLECLICK 0x200000
#define CLIENT_SIZECHANGED 0x400000
+#define CLIENT_STATUSOFF 0x800000
int flags;
struct key_table *keytable;
@@ -1930,6 +1933,7 @@ void status_timer_start(struct client *);
void status_timer_start_all(void);
void status_update_saved(struct session *s);
int status_at_line(struct client *);
+u_int status_line_size(struct session *);
struct window *status_get_window_at(struct client *, u_int);
int status_redraw(struct client *);
void printflike(2, 3) status_message_set(struct client *, const char *, ...);