Pass bell through from any window.

This commit is contained in:
Nicholas Marriott
2007-09-29 09:53:25 +00:00
parent 14e9f73df9
commit 2ec60c9d66
5 changed files with 73 additions and 23 deletions

12
tmux.h
View File

@ -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);