mirror of
https://github.com/tmux/tmux.git
synced 2025-09-02 21:56:57 +00:00
Pass bell through from any window.
This commit is contained in:
12
tmux.h
12
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);
|
||||
|
||||
|
Reference in New Issue
Block a user