From 2ec60c9d66978bee9f405ba0b11cc0418d4d2a6c Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Sat, 29 Sep 2007 09:53:25 +0000 Subject: Pass bell through from any window. --- tmux.h | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'tmux.h') 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 @@ -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); -- cgit