diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2012-05-06 07:38:18 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2012-05-06 07:38:18 +0000 |
commit | 56bb9710e27053b6536f581dbdaab4b6cf6c392e (patch) | |
tree | 2dbeac0c73a2135e3dcfe1318a6b971432903537 /usr.bin/tmux/tmux.h | |
parent | b291180aed430a763ea67915de69e61a659ea4ac (diff) |
Add a helper function to open the terminal for attach-/new-session.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index dda6c1968e8..3c426e4ad9a 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.330 2012/04/29 17:20:01 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.331 2012/05/06 07:38:17 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1723,6 +1723,7 @@ void server_add_accept(int); /* server-client.c */ void server_client_create(int); +int server_client_open(struct client *, struct session *, char **); void server_client_lost(struct client *); void server_client_callback(int, short, void *); void server_client_status_timer(void); |