]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.199 v7.3.199
authorBram Moolenaar <Bram@vim.org>
Wed, 25 May 2011 10:09:50 +0000 (12:09 +0200)
committerBram Moolenaar <Bram@vim.org>
Wed, 25 May 2011 10:09:50 +0000 (12:09 +0200)
Problem:    MS-Windows: Compilation problem of OLE with MingW compiler.
Solution:   Put #ifdef around declarations. (Guopeng Wen)

src/if_ole.h
src/version.c

index 0b48b92ff1379bc7faab4fb11ff736b610ac8194..5749cdb759f7bead496cfb29336bd89b38e6dacd 100644 (file)
@@ -46,8 +46,11 @@ typedef struct Vim Vim;
 /* header files for imported files */
 #include "oaidl.h"
 
-void __RPC_FAR * __RPC_USER MIDL_user_allocate(size_t);
-void __RPC_USER MIDL_user_free( void __RPC_FAR * );
+#ifndef __MIDL_user_allocate_free_DEFINED__
+#define __MIDL_user_allocate_free_DEFINED__
+    void __RPC_FAR * __RPC_USER MIDL_user_allocate(size_t);
+    void __RPC_USER MIDL_user_free( void __RPC_FAR * );
+#endif
 
 #ifndef __IVim_INTERFACE_DEFINED__
 #define __IVim_INTERFACE_DEFINED__
index b4f3ff65e647db04df5983ffc73f988e965147c1..0136d61173f66e26328ed16cded69383e6fa46e6 100644 (file)
@@ -709,6 +709,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    199,
 /**/
     198,
 /**/