view src/proto/gui_beval.pro @ 21134:0abcf69badda v8.2.1118

patch 8.2.1118: condition can never be true, dead code Commit: https://github.com/vim/vim/commit/810af5ea460eab820cc5899892067d8c242be688 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jul 2 21:23:42 2020 +0200 patch 8.2.1118: condition can never be true, dead code Problem: Condition can never be true, dead code. Solution: Remove the dead code.
author Bram Moolenaar <Bram@vim.org>
date Thu, 02 Jul 2020 21:30:04 +0200
parents 1a450ce6980c
children
line wrap: on
line source

/* gui_beval.c */
BalloonEval *gui_mch_create_beval_area(void *target, char_u *mesg, void (*mesgCB)(BalloonEval *, int), void *clientData);
void gui_mch_destroy_beval_area(BalloonEval *beval);
void gui_mch_enable_beval_area(BalloonEval *beval);
void gui_mch_disable_beval_area(BalloonEval *beval);
BalloonEval *gui_mch_currently_showing_beval(void);
void gui_mch_post_balloon(BalloonEval *beval, char_u *mesg);
void gui_mch_unpost_balloon(BalloonEval *beval);
/* vim: set ft=c : */