From 91e24af08997ee5348366b3de5ab5167bf712a43 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Fri, 5 Oct 2007 14:23:28 +0000 Subject: Clean up pause/exit mess with flags. --- tmux.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index 0100f042..147be57b 100644 --- a/tmux.h +++ b/tmux.h @@ -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 @@ -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. */ -- cgit