diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-03-07 23:26:06 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-03-07 23:26:06 +0000 |
commit | e2ac10d732fae811411129ff5f101fab72ac1248 (patch) | |
tree | c7f76f50745760ca7add7c0960c1fb94c565202c /src/proto/gui_beval.pro | |
parent | 4d34b432dbff61a435816d74ef6b08a1b50d3f8d (diff) | |
download | vim-e2ac10d732fae811411129ff5f101fab72ac1248.zip |
updated for version 7.0057
Diffstat (limited to 'src/proto/gui_beval.pro')
-rw-r--r-- | src/proto/gui_beval.pro | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/src/proto/gui_beval.pro b/src/proto/gui_beval.pro index 160b0e1bd..42e0082f9 100644 --- a/src/proto/gui_beval.pro +++ b/src/proto/gui_beval.pro @@ -1,10 +1,11 @@ /* gui_beval.c */ -BalloonEval *gui_mch_create_beval_area __ARGS((void *target, char_u *mesg, void (*mesgCB)(BalloonEval *, int), void *clientData)); -void gui_mch_destroy_beval_area __ARGS((BalloonEval *beval)); -void gui_mch_enable_beval_area __ARGS((BalloonEval *beval)); -void gui_mch_disable_beval_area __ARGS((BalloonEval *beval)); -BalloonEval *gui_mch_currently_showing_beval __ARGS((void)); -int gui_mch_get_beval_info __ARGS((BalloonEval *beval, char_u **filename, int *line, char_u **text, int *idx)); -void gui_mch_post_balloon __ARGS((BalloonEval *beval, char_u *mesg)); -void gui_mch_unpost_balloon __ARGS((BalloonEval *beval)); +extern void general_beval_cb __ARGS((BalloonEval *beval, int state)); +extern BalloonEval *gui_mch_create_beval_area __ARGS((void *target, char_u *mesg, void (*mesgCB)(BalloonEval *, int), void *clientData)); +extern void gui_mch_destroy_beval_area __ARGS((BalloonEval *beval)); +extern void gui_mch_enable_beval_area __ARGS((BalloonEval *beval)); +extern void gui_mch_disable_beval_area __ARGS((BalloonEval *beval)); +extern BalloonEval *gui_mch_currently_showing_beval __ARGS((void)); +extern int get_beval_info __ARGS((BalloonEval *beval, int getword, win_T **winp, linenr_T *lnump, char_u **textp, int *colp)); +extern void gui_mch_post_balloon __ARGS((BalloonEval *beval, char_u *mesg)); +extern void gui_mch_unpost_balloon __ARGS((BalloonEval *beval)); /* vim: set ft=c : */ |