diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-05 14:23:28 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-05 14:23:28 +0000 |
commit | 91e24af08997ee5348366b3de5ab5167bf712a43 (patch) | |
tree | 0eb889d63f7039dee09aee09af51fc20005e196b /tmux.h | |
parent | fa65aec2ef256d6e8c2f64a39b213c57d48422f3 (diff) | |
download | rtmux-91e24af08997ee5348366b3de5ab5167bf712a43.tar.gz rtmux-91e24af08997ee5348366b3de5ab5167bf712a43.tar.bz2 rtmux-91e24af08997ee5348366b3de5ab5167bf712a43.zip |
Clean up pause/exit mess with flags.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.50 2007-10-04 22:04:01 nicm Exp $ */ +/* $Id: tmux.h,v 1.51 2007-10-05 14:23:28 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -453,6 +453,11 @@ struct client_ctx { int loc_fd; struct buffer *loc_in; struct buffer *loc_out; + +#define CCTX_PAUSE 0x1 +#define CCTX_DETACH 0x2 +#define CCTX_EXIT 0x4 + int flags; }; /* Key/command line command. */ |