=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.231 retrieving revision 1.232 diff -c -r1.231 -r1.232 *** src/usr.bin/tmux/tmux.h 2010/06/28 22:10:42 1.231 --- src/usr.bin/tmux/tmux.h 2010/06/29 03:30:14 1.232 *************** *** 1,4 **** ! /* $OpenBSD: tmux.h,v 1.231 2010/06/28 22:10:42 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: tmux.h,v 1.232 2010/06/29 03:30:14 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 1850,1858 **** --- 1850,1860 ---- struct window_pane *window_pane_find_right(struct window_pane *); /* layout.c */ + u_int layout_count_cells(struct layout_cell *); struct layout_cell *layout_create_cell(struct layout_cell *); void layout_free_cell(struct layout_cell *); void layout_print_cell(struct layout_cell *, const char *, u_int); + void layout_destroy_cell(struct layout_cell *, struct layout_cell **); void layout_set_size( struct layout_cell *, u_int, u_int, u_int, u_int); void layout_make_leaf( *************** *** 1873,1878 **** --- 1875,1884 ---- struct window_pane *, enum layout_type, int); void layout_close_pane(struct window_pane *); + /* layout-custom.c */ + char *layout_dump(struct window *); + int layout_parse(struct window *, const char *); + /* layout-set.c */ const char *layout_set_name(u_int); int layout_set_lookup(const char *); *************** *** 1883,1888 **** --- 1889,1895 ---- /* layout-string.c */ struct layout_cell *layout_find_string(struct window *, const char *); + struct layout_cell *layout_find_bottomright(struct layout_cell *); /* window-clock.c */ extern const struct window_mode window_clock_mode;