Mercurial > vim
annotate src/proto/gui_beval.pro @ 20622:d487701a608e
Added tag v8.2.0864 for changeset d30b16692ce0ef62ead483068caa67cb03c2b795
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 31 May 2020 18:00:04 +0200 |
parents | 1a450ce6980c |
children |
rev | line source |
---|---|
7 | 1 /* gui_beval.c */ |
7668
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
1125
diff
changeset
|
2 BalloonEval *gui_mch_create_beval_area(void *target, char_u *mesg, void (*mesgCB)(BalloonEval *, int), void *clientData); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
1125
diff
changeset
|
3 void gui_mch_destroy_beval_area(BalloonEval *beval); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
1125
diff
changeset
|
4 void gui_mch_enable_beval_area(BalloonEval *beval); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
1125
diff
changeset
|
5 void gui_mch_disable_beval_area(BalloonEval *beval); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
1125
diff
changeset
|
6 BalloonEval *gui_mch_currently_showing_beval(void); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
1125
diff
changeset
|
7 void gui_mch_post_balloon(BalloonEval *beval, char_u *mesg); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
1125
diff
changeset
|
8 void gui_mch_unpost_balloon(BalloonEval *beval); |
7 | 9 /* vim: set ft=c : */ |