summaryrefslogtreecommitdiffstats
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2007-09-29 09:53:25 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2007-09-29 09:53:25 +0000
commit2ec60c9d66978bee9f405ba0b11cc0418d4d2a6c (patch)
treec5ead1f7c461ab0e7413fb9d486c9e08ff60e120 /tmux.h
parent14e9f73df9d133a102d5dc344c0fc59eb64d39b4 (diff)
Pass bell through from any window.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/tmux.h b/tmux.h
index 504bf98c..27af6bd8 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.22 2007-09-29 09:15:49 nicm Exp $ */
+/* $Id: tmux.h,v 1.23 2007-09-29 09:53:25 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -539,10 +539,12 @@ int server_msg_dispatch(struct client *);
/* server-fn.c */
struct session *server_find_sessid(struct sessid *, char **);
void server_write_message(struct client *, const char *, ...);
-void server_write_client(struct client *, enum hdrtype, void *, size_t);
-void server_write_client2(
- struct client *, enum hdrtype, void *, size_t, void *, size_t);
-void server_write_clients(struct window *, enum hdrtype, void *, size_t);
+void server_write_client(
+ struct client *, enum hdrtype, const void *, size_t);
+void server_write_client2(struct client *,
+ enum hdrtype, const void *, size_t, const void *, size_t);
+void server_write_clients(
+ struct window *, enum hdrtype, const void *, size_t);
void server_window_changed(struct client *);
void server_draw_client(struct client *, u_int, u_int);