summaryrefslogtreecommitdiffstats
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2007-09-28 19:04:21 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2007-09-28 19:04:21 +0000
commit599046168820193686960a1a89411bb4f878daf5 (patch)
treef9b6787932bf885f0290fd1821cacf584a8e387f /tmux.h
parent109873bdf876ca019ef30376d33d751472feb1a1 (diff)
Add client_flush to flush output when transient commands are called.
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 4eccbc32..901c2cdd 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.18 2007-09-27 10:09:37 nicm Exp $ */
+/* $Id: tmux.h,v 1.19 2007-09-28 19:04:21 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -455,6 +455,7 @@ int op_list_windows(char *, int, char **);
/* client.c */
int client_init(char *, struct client_ctx *, int);
+int client_flush(struct client_ctx *);
int client_main(struct client_ctx *);
void client_write_server(struct client_ctx *, enum hdrtype, void *, size_t);
void client_fill_sessid(struct sessid *, char [MAXNAMELEN]);