aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2012-09-03 09:32:38 +0000
committerThomas Adam <thomas@xteddy.org>2012-09-04 22:36:47 +0100
commit41a448193f2cce87c9e7125f7a71e19acb928604 (patch)
tree9448f8a1988f10e76d6870acc9a8c61a45285306 /tmux.h
parent03045551849f139076e95fcdc71dc28dc8459db2 (diff)
downloadrtmux-41a448193f2cce87c9e7125f7a71e19acb928604.tar.gz
rtmux-41a448193f2cce87c9e7125f7a71e19acb928604.tar.bz2
rtmux-41a448193f2cce87c9e7125f7a71e19acb928604.zip
Send notifications to control clients. Also don't redraw client when
suspended.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/tmux.h b/tmux.h
index a3d64dee..c593b71f 100644
--- a/tmux.h
+++ b/tmux.h
@@ -2211,6 +2211,17 @@ void clear_signals(int);
/* control.c */
void control_callback(struct client *, int, void*);
+void printflike2 control_write(struct client *, const char *, ...);
+
+/* control-notify.c */
+void control_notify_window_layout_changed(struct window *);
+void control_notify_window_unlinked(struct session *, struct window *);
+void control_notify_window_linked(struct session *, struct window *);
+void control_notify_window_renamed(struct window *);
+void control_notify_attached_session_changed(struct client *);
+void control_notify_session_renamed(struct session *);
+void control_notify_session_created(struct session *);
+void control_notify_session_close(struct session *);
/* session.c */
extern struct sessions sessions;