summaryrefslogtreecommitdiff
path: root/src/gui_w48.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2012-11-20 16:53:39 +0100
committerBram Moolenaar <Bram@vim.org>2012-11-20 16:53:39 +0100
commit82881498663eb692e90dcfb9da0a7f573f228e35 (patch)
treebf2ffc25d638538bd870377c87d07709c0fcae6f /src/gui_w48.c
parent0ac24e1ef4b099c95c55261bc2d227ca5707d295 (diff)
downloadvim-git-82881498663eb692e90dcfb9da0a7f573f228e35.tar.gz
updated for version 7.3.719v7.3.719
Problem: Cannot run new version of cproto, it fails on missing include files. Solution: Add lots of #ifndef PROTO
Diffstat (limited to 'src/gui_w48.c')
-rw-r--r--src/gui_w48.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gui_w48.c b/src/gui_w48.c
index 4d38c1510..61c53a7d6 100644
--- a/src/gui_w48.c
+++ b/src/gui_w48.c
@@ -25,6 +25,10 @@
#ifdef DEBUG
# include <tchar.h>
#endif
+
+/* cproto fails on missing include files */
+#ifndef PROTO
+
#ifndef __MINGW32__
# include <shellapi.h>
#endif
@@ -44,6 +48,8 @@
# include "glbl_ime.h"
#endif
+#endif /* PROTO */
+
#ifdef FEAT_MENU
# define MENUHINTS /* show menu hints in command line */
#endif