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 / getchar.pro < prev    next >
Encoding:
Text File  |  1997-03-12  |  1.3 KB  |  32 lines

  1. /* getchar.c */
  2. char_u *get_recorded __PARMS((void));
  3. char_u *get_inserted __PARMS((void));
  4. int stuff_empty __PARMS((void));
  5. void flush_buffers __PARMS((int typeahead));
  6. void ResetRedobuff __PARMS((void));
  7. void AppendToRedobuff __PARMS((char_u *s));
  8. void AppendCharToRedobuff __PARMS((int c));
  9. void AppendNumberToRedobuff __PARMS((long n));
  10. void stuffReadbuff __PARMS((char_u *s));
  11. void stuffcharReadbuff __PARMS((int c));
  12. void stuffnumReadbuff __PARMS((long n));
  13. int start_redo __PARMS((long count, int old_redo));
  14. int start_redo_ins __PARMS((void));
  15. void set_redo_ins __PARMS((void));
  16. void stop_redo_ins __PARMS((void));
  17. int ins_typebuf __PARMS((char_u *str, int noremap, int offset, int nottyped));
  18. int typebuf_typed __PARMS((void));
  19. void del_typebuf __PARMS((int len, int offset));
  20. int openscript __PARMS((char_u *name));
  21. void updatescript __PARMS((int c));
  22. int vgetc __PARMS((void));
  23. int vpeekc __PARMS((void));
  24. int char_avail __PARMS((void));
  25. void vungetc __PARMS((int c));
  26. int do_map __PARMS((int maptype, char_u *keys, int mode));
  27. void map_clear __PARMS((int modec, int forceit, int abbr));
  28. int check_abbr __PARMS((int c, char_u *ptr, int col, int mincol));
  29. int makemap __PARMS((FILE *fd));
  30. int putescstr __PARMS((FILE *fd, char_u *str, int set));
  31. void check_map_keycodes __PARMS((void));
  32.