comparison src/proto/quickfix.pro @ 659:d6a69271cb9a v7.0194

updated for version 7.0194
author vimboss
date Wed, 08 Feb 2006 09:20:24 +0000
parents 19106f131c87
children d8f905020502
comparison
equal deleted inserted replaced
658:903088c7a7c6 659:d6a69271cb9a
1 /* quickfix.c */ 1 /* quickfix.c */
2 int qf_init __ARGS((win_T *wp, char_u *efile, char_u *errorformat, int newlist)); 2 int qf_init __ARGS((win_T *wp, char_u *efile, char_u *errorformat, int newlist));
3 void qf_free_all __ARGS((win_T *wp)); 3 void qf_free_all __ARGS((win_T *wp));
4 void qf_jump __ARGS((win_T *wp, int dir, int errornr, int forceit)); 4 void copy_loclist __ARGS((win_T *from, win_T *to));
5 void qf_jump __ARGS((qf_info_T *qi, int dir, int errornr, int forceit));
5 void qf_list __ARGS((exarg_T *eap)); 6 void qf_list __ARGS((exarg_T *eap));
6 void qf_age __ARGS((exarg_T *eap)); 7 void qf_age __ARGS((exarg_T *eap));
7 void qf_mark_adjust __ARGS((win_T *wp, linenr_T line1, linenr_T line2, long amount, long amount_after)); 8 void qf_mark_adjust __ARGS((win_T *wp, linenr_T line1, linenr_T line2, long amount, long amount_after));
8 void ex_cwindow __ARGS((exarg_T *eap)); 9 void ex_cwindow __ARGS((exarg_T *eap));
9 void ex_cclose __ARGS((exarg_T *eap)); 10 void ex_cclose __ARGS((exarg_T *eap));
24 int get_errorlist __ARGS((win_T *wp, list_T *list)); 25 int get_errorlist __ARGS((win_T *wp, list_T *list));
25 int set_errorlist __ARGS((win_T *wp, list_T *list, int action)); 26 int set_errorlist __ARGS((win_T *wp, list_T *list, int action));
26 void ex_cbuffer __ARGS((exarg_T *eap)); 27 void ex_cbuffer __ARGS((exarg_T *eap));
27 void ex_cexpr __ARGS((exarg_T *eap)); 28 void ex_cexpr __ARGS((exarg_T *eap));
28 void ex_helpgrep __ARGS((exarg_T *eap)); 29 void ex_helpgrep __ARGS((exarg_T *eap));
29 void copy_loclist __ARGS((win_T *from, win_T *to));
30 /* vim: set ft=c : */ 30 /* vim: set ft=c : */