diff options
author | Thomas Adam <thomas@xteddy.org> | 2017-04-28 22:01:18 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2017-04-28 22:01:18 +0100 |
commit | 3a8e56b282161ab4feb728bfedba77aa35093a0a (patch) | |
tree | ac58d53220819d892f1e8177a7cf63ffddac6907 /tmux.h | |
parent | 36202a63e979f41943003d49748eaebe5776bf7f (diff) | |
parent | 0f2f783584c62879a1182972e915f550bf23f00a (diff) | |
download | rtmux-3a8e56b282161ab4feb728bfedba77aa35093a0a.tar.gz rtmux-3a8e56b282161ab4feb728bfedba77aa35093a0a.tar.bz2 rtmux-3a8e56b282161ab4feb728bfedba77aa35093a0a.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -2116,7 +2116,8 @@ struct window_pane *window_pane_find_down(struct window_pane *); struct window_pane *window_pane_find_left(struct window_pane *); struct window_pane *window_pane_find_right(struct window_pane *); void window_set_name(struct window *, const char *); -void window_remove_ref(struct window *); +void window_add_ref(struct window *, const char *); +void window_remove_ref(struct window *, const char *); void winlink_clear_flags(struct winlink *); int winlink_shuffle_up(struct session *, struct winlink *); @@ -2230,7 +2231,8 @@ struct session *session_create(const char *, const char *, int, char **, const char *, const char *, struct environ *, struct termios *, int, u_int, u_int, char **); void session_destroy(struct session *); -void session_unref(struct session *); +void session_add_ref(struct session *, const char *); +void session_remove_ref(struct session *, const char *); int session_check_name(const char *); void session_update_activity(struct session *, struct timeval *); struct session *session_next_session(struct session *); |