diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-01-13 06:50:10 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-01-13 06:50:10 +0000 |
commit | f85559144fbc4a58ce4f513b2217852bc959a8b6 (patch) | |
tree | 1a8442c666152328fd4fe611964520924ca42435 /tmux.h | |
parent | 98c85cf989a951c28e536e10de147b3263d934ce (diff) | |
download | rtmux-f85559144fbc4a58ce4f513b2217852bc959a8b6.tar.gz rtmux-f85559144fbc4a58ce4f513b2217852bc959a8b6.tar.bz2 rtmux-f85559144fbc4a58ce4f513b2217852bc959a8b6.zip |
kill-pane command.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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 <nicm@users.sourceforge.net> @@ -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 *, |