home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / amiga / vim46src.lha / vim-4.6 / src / proto / screen.pro < prev    next >
Encoding:
Text File  |  1997-03-12  |  2.0 KB  |  47 lines

  1. /* screen.c */
  2. void updateline __PARMS((void));
  3. void update_curbuf __PARMS((int type));
  4. void updateScreen __PARMS((int type));
  5. void updateWindow __PARMS((WIN *wp));
  6. void win_update __PARMS((WIN *wp));
  7. void status_redraw_all __PARMS((void));
  8. void win_redr_status __PARMS((WIN *wp));
  9. void display_dollar __PARMS((colnr_t col));
  10. void undisplay_dollar __PARMS((void));
  11. void screen_outchar __PARMS((int c, int row, int col));
  12. void screen_msg __PARMS((char_u *text, int row, int col));
  13. void screen_start __PARMS((void));
  14. int set_highlight __PARMS((int context));
  15. void start_highlight __PARMS((void));
  16. void stop_highlight __PARMS((void));
  17. void remember_highlight __PARMS((void));
  18. void recover_old_highlight __PARMS((void));
  19. void screen_fill __PARMS((int start_row, int end_row, int start_col, int end_col, int c1, int c2));
  20. void comp_Botline_all __PARMS((void));
  21. void comp_Botline __PARMS((WIN *wp));
  22. void screenalloc __PARMS((int clear));
  23. void screenclear __PARMS((void));
  24. void check_cursor __PARMS((void));
  25. void cursupdate __PARMS((void));
  26. void scroll_cursor_top __PARMS((int min_scroll, int always));
  27. void scroll_cursor_bot __PARMS((int min_scroll, int set_topline));
  28. void scroll_cursor_halfway __PARMS((int atend));
  29. void cursor_correct __PARMS((void));
  30. int curs_rows __PARMS((void));
  31. void curs_columns __PARMS((int scroll));
  32. void scrolldown __PARMS((long line_count));
  33. void scrollup __PARMS((long line_count));
  34. void scrolldown_clamp __PARMS((void));
  35. void scrollup_clamp __PARMS((void));
  36. int win_ins_lines __PARMS((WIN *wp, int row, int line_count, int invalid, int mayclear));
  37. int win_del_lines __PARMS((WIN *wp, int row, int line_count, int invalid, int mayclear));
  38. void win_rest_invalid __PARMS((WIN *wp));
  39. int screen_del_lines __PARMS((int off, int row, int line_count, int end, int force));
  40. int showmode __PARMS((void));
  41. void delmode __PARMS((void));
  42. void showruler __PARMS((int always));
  43. void win_redr_ruler __PARMS((WIN *wp, int always));
  44. int screen_valid __PARMS((int clear));
  45. int jump_to_mouse __PARMS((int flags));
  46. void redraw_later __PARMS((int type));
  47.