diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-09-29 13:22:15 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-09-29 13:22:15 +0000 |
commit | 653ee721df4b0464803d6cba46376b4fcbd09b82 (patch) | |
tree | 01473c0ff6aed723ac74af38073e5bf400e8ec2b /tmux.h | |
parent | a6875d0dae0f656fe25df9380a0b3fd115edb454 (diff) | |
download | rtmux-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.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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); |