aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h18
1 files changed, 17 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 1e6c5759..38f25910 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.126 2008-06-04 05:40:35 nicm Exp $ */
+/* $Id: tmux.h,v 1.127 2008-06-04 16:11:53 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -681,6 +681,22 @@ struct cmd_entry {
void (*init)(void **, int);
};
+/* Generic command data. */
+struct cmd_clientonly_data {
+ char *cname;
+};
+
+struct cmd_sessiononly_data {
+ char *cname;
+ char *sname;
+};
+
+struct cmd_windowonly_data {
+ char *cname;
+ char *sname;
+ int idx;
+};
+
/* Key binding. */
struct binding {
int key;