window.pro
上传用户:gddssl
上传日期:2007-01-06
资源大小:1003k
文件大小:1k
源码类别:

编辑器/阅读器

开发平台:

DOS

  1. /* window.c */
  2. void do_window __ARGS((int nchar, long Prenum));
  3. int win_split __ARGS((int new_height, int redraw, int req_room));
  4. int win_valid __ARGS((WIN *win));
  5. int win_count __ARGS((void));
  6. int make_windows __ARGS((int count));
  7. void win_move_after __ARGS((WIN *win1, WIN *win2));
  8. void win_equal __ARGS((WIN *next_curwin, int redraw));
  9. void close_windows __ARGS((BUF *buf));
  10. void close_window __ARGS((WIN *win, int free_buf));
  11. void close_others __ARGS((int message, int forceit));
  12. void win_init __ARGS((WIN *wp));
  13. WIN *win_goto_nr __ARGS((int winnr));
  14. void win_enter __ARGS((WIN *wp, int undo_sync));
  15. WIN *win_alloc __ARGS((WIN *after));
  16. void win_free __ARGS((WIN *wp));
  17. int win_alloc_lsize __ARGS((WIN *wp));
  18. void win_free_lsize __ARGS((WIN *wp));
  19. void screen_new_rows __ARGS((void));
  20. void win_setheight __ARGS((int height));
  21. void win_setminheight __ARGS((void));
  22. void win_drag_status_line __ARGS((int offset));
  23. void win_comp_scroll __ARGS((WIN *wp));
  24. void command_height __ARGS((long old_p_ch));
  25. void last_status __ARGS((void));
  26. char_u *file_name_at_cursor __ARGS((int options, long count));
  27. char_u *get_file_name_in_path __ARGS((char_u *line, int col, int options, long count));
  28. int min_rows __ARGS((void));
  29. int only_one_window __ARGS((void));
  30. void check_lnums __ARGS((int do_curwin));