aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2007-09-29 13:22:15 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2007-09-29 13:22:15 +0000
commit653ee721df4b0464803d6cba46376b4fcbd09b82 (patch)
tree01473c0ff6aed723ac74af38073e5bf400e8ec2b /tmux.h
parenta6875d0dae0f656fe25df9380a0b3fd115edb454 (diff)
downloadrtmux-653ee721df4b0464803d6cba46376b4fcbd09b82.tar.gz
rtmux-653ee721df4b0464803d6cba46376b4fcbd09b82.tar.bz2
rtmux-653ee721df4b0464803d6cba46376b4fcbd09b82.zip
Write error messages for rename. Also tweak some error outputs, and fix -i.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 76f3dc33..089496a7 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.24 2007-09-29 10:57:39 nicm Exp $ */
+/* $Id: tmux.h,v 1.25 2007-09-29 13:22:15 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -261,6 +261,7 @@ struct buffer {
enum hdrtype {
MSG_ATTACH,
MSG_CREATE,
+ MSG_DONE,
MSG_ERROR,
MSG_EXIT,
MSG_INPUT,
@@ -538,6 +539,7 @@ int server_msg_dispatch(struct client *);
/* server-fn.c */
struct session *server_find_sessid(struct sessid *, char **);
+void server_write_error(struct client *, const char *, ...);
void server_write_message(struct client *, const char *, ...);
void server_write_client(
struct client *, enum hdrtype, const void *, size_t);