comparison src/proto/window.pro @ 7:3fc0f57ecb91 v7.0001

updated for version 7.0001
author vimboss
date Sun, 13 Jun 2004 20:20:40 +0000
parents
children 7033303ea0c0
comparison
equal deleted inserted replaced
6:c2daee826b8f 7:3fc0f57ecb91
1 /* window.c */
2 void do_window __ARGS((int nchar, long Prenum, int xchar));
3 int win_split __ARGS((int size, int flags));
4 int win_valid __ARGS((win_T *win));
5 int win_count __ARGS((void));
6 int make_windows __ARGS((int count, int vertical));
7 void win_move_after __ARGS((win_T *win1, win_T *win2));
8 void win_equal __ARGS((win_T *next_curwin, int current, int dir));
9 void close_windows __ARGS((buf_T *buf));
10 void win_close __ARGS((win_T *win, int free_buf));
11 void close_others __ARGS((int message, int forceit));
12 void win_init __ARGS((win_T *wp));
13 void win_alloc_first __ARGS((void));
14 void win_goto __ARGS((win_T *wp));
15 win_T *win_find_nr __ARGS((int winnr));
16 void win_enter __ARGS((win_T *wp, int undo_sync));
17 win_T *buf_jump_open_win __ARGS((buf_T *buf));
18 int win_alloc_lines __ARGS((win_T *wp));
19 void win_free_lsize __ARGS((win_T *wp));
20 void shell_new_rows __ARGS((void));
21 void shell_new_columns __ARGS((void));
22 void win_size_save __ARGS((garray_T *gap));
23 void win_size_restore __ARGS((garray_T *gap));
24 void win_setheight __ARGS((int height));
25 void win_setheight_win __ARGS((int height, win_T *win));
26 void win_setwidth __ARGS((int width));
27 void win_setwidth_win __ARGS((int width, win_T *wp));
28 void win_setminheight __ARGS((void));
29 void win_drag_status_line __ARGS((win_T *dragwin, int offset));
30 void win_drag_vsep_line __ARGS((win_T *dragwin, int offset));
31 void win_comp_scroll __ARGS((win_T *wp));
32 void command_height __ARGS((long old_p_ch));
33 void last_status __ARGS((int morewin));
34 char_u *file_name_at_cursor __ARGS((int options, long count));
35 char_u *file_name_in_line __ARGS((char_u *line, int col, int options, long count, char_u *rel_fname));
36 char_u *find_file_name_in_path __ARGS((char_u *ptr, int len, int options, long count, char_u *rel_fname));
37 int path_with_url __ARGS((char_u *fname));
38 int vim_isAbsName __ARGS((char_u *name));
39 int vim_FullName __ARGS((char_u *fname, char_u *buf, int len, int force));
40 int min_rows __ARGS((void));
41 int only_one_window __ARGS((void));
42 void check_lnums __ARGS((int do_curwin));
43 int win_hasvertsplit __ARGS((void));
44 /* vim: set ft=c : */