aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2016-10-17 00:01:11 +0100
committerThomas Adam <thomas@xteddy.org>2016-10-17 00:01:11 +0100
commitd54e990c4ffb576aa3d82306b970dc64bdd4cda6 (patch)
tree14657ab6804e8dcb4ee696afd823e19e46e0631f /tmux.h
parent1a6e696b08113ca17ee8e881844167cf94276846 (diff)
parentfe106842c879c8f2d0419afba4f90ce0c62c5e80 (diff)
downloadrtmux-d54e990c4ffb576aa3d82306b970dc64bdd4cda6.tar.gz
rtmux-d54e990c4ffb576aa3d82306b970dc64bdd4cda6.tar.bz2
rtmux-d54e990c4ffb576aa3d82306b970dc64bdd4cda6.zip
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h16
1 files changed, 7 insertions, 9 deletions
diff --git a/tmux.h b/tmux.h
index 1c25e2a7..ed349330 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1585,14 +1585,12 @@ enum mode_key_cmd mode_key_lookup(struct mode_key_data *, key_code);
/* notify.c */
void notify_input(struct window_pane *, struct evbuffer *);
-void notify_window_layout_changed(struct window *);
-void notify_window_unlinked(struct session *, struct window *);
-void notify_window_linked(struct session *, struct window *);
-void notify_window_renamed(struct window *);
-void notify_attached_session_changed(struct client *);
-void notify_session_renamed(struct session *);
-void notify_session_created(struct session *);
-void notify_session_closed(struct session *);
+void notify_client(const char *, struct client *);
+void notify_session(const char *, struct session *);
+void notify_winlink(const char *, struct session *, struct winlink *);
+void notify_session_window(const char *, struct session *, struct window *);
+void notify_window(const char *, struct window *);
+void notify_pane(const char *, struct window_pane *);
/* options.c */
struct options *options_create(struct options *);
@@ -2211,7 +2209,7 @@ 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_client_session_changed(struct client *);
void control_notify_session_renamed(struct session *);
void control_notify_session_created(struct session *);
void control_notify_session_closed(struct session *);