aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2017-04-19 16:01:14 +0100
committerThomas Adam <thomas@xteddy.org>2017-04-19 16:01:14 +0100
commit5a551ac57f5f6ab9e4ea58752521583f00c8e555 (patch)
treee999ce267cf8e71945add80b9b647ecf645b8fa1 /tmux.h
parent85af9c9c9d5614a483f4346a75da6aa589b33a12 (diff)
parent53fde21bb85c37c35854069ec95377ecc86750ee (diff)
downloadrtmux-5a551ac57f5f6ab9e4ea58752521583f00c8e555.tar.gz
rtmux-5a551ac57f5f6ab9e4ea58752521583f00c8e555.tar.bz2
rtmux-5a551ac57f5f6ab9e4ea58752521583f00c8e555.zip
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index a78a7206..b84ba3cf 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1342,7 +1342,7 @@ struct client {
#define CLIENT_DEAD 0x200
#define CLIENT_BORDERS 0x400
#define CLIENT_READONLY 0x800
-/* 0x1000 unused */
+#define CLIENT_DETACHING 0x1000
#define CLIENT_CONTROL 0x2000
#define CLIENT_CONTROLCONTROL 0x4000
#define CLIENT_FOCUSED 0x8000
@@ -1842,6 +1842,7 @@ void server_client_create(int);
int server_client_open(struct client *, char **);
void server_client_unref(struct client *);
void server_client_lost(struct client *);
+void server_client_suspend(struct client *);
void server_client_detach(struct client *, enum msgtype);
void server_client_exec(struct client *, const char *);
void server_client_loop(void);