summaryrefslogtreecommitdiffstats
path: root/tmux.h
diff options
context:
space:
mode:
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 449f0676..85f5fb68 100644
--- a/tmux.h
+++ b/tmux.h
@@ -2215,6 +2215,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;