Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1 | /* gui_beval.c */ |
Bram Moolenaar | ef26954 | 2016-01-19 13:22:12 +0100 | [diff] [blame] | 2 | BalloonEval *gui_mch_create_beval_area(void *target, char_u *mesg, void (*mesgCB)(BalloonEval *, int), void *clientData); |
| 3 | void gui_mch_destroy_beval_area(BalloonEval *beval); |
| 4 | void gui_mch_enable_beval_area(BalloonEval *beval); |
| 5 | void gui_mch_disable_beval_area(BalloonEval *beval); |
| 6 | BalloonEval *gui_mch_currently_showing_beval(void); |
Bram Moolenaar | ef26954 | 2016-01-19 13:22:12 +0100 | [diff] [blame] | 7 | void gui_mch_post_balloon(BalloonEval *beval, char_u *mesg); |
| 8 | void gui_mch_unpost_balloon(BalloonEval *beval); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 9 | /* vim: set ft=c : */ |