aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2009-09-20 22:15:32 +0000
committerTiago Cunha <tcunha@gmx.com>2009-09-20 22:15:32 +0000
commit7335ef5792791e803b090fb9d54718604a0d7dab (patch)
tree5e3d96dc3abf3cac92ea27120266aa3806947333 /tmux.h
parent3266fb5441e99c809ee56806a0eb8d113a4d099f (diff)
downloadrtmux-7335ef5792791e803b090fb9d54718604a0d7dab.tar.gz
rtmux-7335ef5792791e803b090fb9d54718604a0d7dab.tar.bz2
rtmux-7335ef5792791e803b090fb9d54718604a0d7dab.zip
Sync OpenBSD patchset 333:
Move some common and untidy code for window link/unlink into generic functions instead of duplicating it in move/link window..
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index cb9938bf..d7b324fe 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.443 2009-09-16 12:36:27 nicm Exp $ */
+/* $Id: tmux.h,v 1.444 2009-09-20 22:15:32 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -1454,6 +1454,9 @@ void server_status_window(struct window *);
void server_lock(void);
int server_unlock(const char *);
void server_kill_window(struct window *);
+int server_link_window(
+ struct winlink *, struct session *, int, int, int, char **);
+void server_unlink_window(struct session *, struct winlink *);
void server_destroy_session(struct session *);
void server_set_identify(struct client *);
void server_clear_identify(struct client *);