From f85559144fbc4a58ce4f513b2217852bc959a8b6 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Tue, 13 Jan 2009 06:50:10 +0000 Subject: kill-pane command. --- tmux.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index dcdea19a..12f07b96 100644 --- a/tmux.h +++ b/tmux.h @@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.228 2009-01-12 23:37:02 nicm Exp $ */ +/* $Id: tmux.h,v 1.229 2009-01-13 06:50:10 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -1081,6 +1081,7 @@ extern const struct cmd_entry cmd_copy_mode_entry; extern const struct cmd_entry cmd_delete_buffer_entry; extern const struct cmd_entry cmd_detach_client_entry; extern const struct cmd_entry cmd_has_session_entry; +extern const struct cmd_entry cmd_kill_pane_entry; extern const struct cmd_entry cmd_kill_server_entry; extern const struct cmd_entry cmd_kill_session_entry; extern const struct cmd_entry cmd_kill_window_entry; @@ -1383,7 +1384,7 @@ void window_destroy(struct window *); int window_resize(struct window *, u_int, u_int); int window_add_pane(struct window *, u_int, const char *, const char *, const char **, u_int); -int window_remove_pane(struct window *, int); +int window_remove_pane(struct window *, struct window_pane *); struct window_pane *window_pane_create(struct window *, u_int, u_int, u_int); void window_pane_destroy(struct window_pane *); int window_pane_spawn(struct window_pane *, -- cgit