comparison src/gui_w32.c @ 7807:1a5d34492798 v7.4.1200

commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jan 29 23:20:40 2016 +0100 patch 7.4.1200 Problem: Still using __ARGS. Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
author Christian Brabandt <cb@256bit.org>
date Fri, 29 Jan 2016 23:30:06 +0100
parents a1e71a01dbd6
children bcef391c101c
comparison
equal deleted inserted replaced
7806:eb2af74e899a 7807:1a5d34492798
4929 /*ARGSUSED*/ 4929 /*ARGSUSED*/
4930 BalloonEval * 4930 BalloonEval *
4931 gui_mch_create_beval_area(target, mesg, mesgCB, clientData) 4931 gui_mch_create_beval_area(target, mesg, mesgCB, clientData)
4932 void *target; /* ignored, always use s_textArea */ 4932 void *target; /* ignored, always use s_textArea */
4933 char_u *mesg; 4933 char_u *mesg;
4934 void (*mesgCB)__ARGS((BalloonEval *, int)); 4934 void (*mesgCB)(BalloonEval *, int);
4935 void *clientData; 4935 void *clientData;
4936 { 4936 {
4937 /* partially stolen from gui_beval.c */ 4937 /* partially stolen from gui_beval.c */
4938 BalloonEval *beval; 4938 BalloonEval *beval;
4939 4939