aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2016-06-16 14:01:11 +0100
committerThomas Adam <thomas@xteddy.org>2016-06-16 14:01:11 +0100
commit93f42d360b8dbeff738992c15067d608ead16c21 (patch)
tree4f9cc77ac128f028a343bcc73651a8f12c61d099 /tmux.h
parentd35a9ac5f20f65eecd1822e9a4ace2033756656a (diff)
parent325cbe90d925d3deb90559463b6d968c31fa5924 (diff)
downloadrtmux-93f42d360b8dbeff738992c15067d608ead16c21.tar.gz
rtmux-93f42d360b8dbeff738992c15067d608ead16c21.tar.bz2
rtmux-93f42d360b8dbeff738992c15067d608ead16c21.zip
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index a596de21..9f5e6310 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1279,6 +1279,8 @@ struct client {
struct key_table *keytable;
struct event identify_timer;
+ void (*identify_callback)(struct client *, struct window_pane *);
+ void *identify_callback_data;
char *message_string;
struct event message_timer;
@@ -1939,7 +1941,7 @@ void server_destroy_session_group(struct session *);
void server_destroy_session(struct session *);
void server_check_unattached(void);
void server_set_identify(struct client *);
-void server_clear_identify(struct client *);
+void server_clear_identify(struct client *, struct window_pane *);
int server_set_stdin_callback(struct client *, void (*)(struct client *,
int, void *), void *, char **);
void server_unzoom_window(struct window *);