]> granicus.if.org Git - vim/commitdiff
updated for version 7.4.512 v7.4.512
authorBram Moolenaar <Bram@vim.org>
Wed, 12 Nov 2014 15:10:48 +0000 (16:10 +0100)
committerBram Moolenaar <Bram@vim.org>
Wed, 12 Nov 2014 15:10:48 +0000 (16:10 +0100)
Problem:    Cannot generate prototypes for Win32 files and VMS.
Solution:   Add typedefs and #ifdef

src/gui_w32.c
src/os_vms.c
src/os_win32.c
src/version.c

index 374ed4725891fa15189391977c8c8c44628da9c5..b81a74df963df2f45749f885824b33c879a1e3cf 100644 (file)
 # include "gui_dwrite.h"
 #endif
 
-#if defined(FEAT_DIRECTX) || defined(PROTO)
+#if defined(FEAT_DIRECTX)
 static DWriteContext *s_dwc = NULL;
 static int s_directx_enabled = 0;
 static int s_directx_load_attempted = 0;
 # define IS_ENABLE_DIRECTX() (s_directx_enabled && s_dwc != NULL)
+#endif
 
+#if defined(FEAT_DIRECTX) || defined(PROTO)
     int
 directx_enabled(void)
 {
index 55876b27fe6ae54543c56194cc4b9d4bfe353037..12eceedd0cce1f8241352dcef62cd63062d75801 100644 (file)
@@ -12,7 +12,7 @@
 #include       "vim.h"
 
 /* define _generic_64 for use in time functions */
-#ifndef VAX
+#if !defined(VAX) && !defined(PROTO)
 #   include <gen64def.h>
 #else
 /* based on Alpha's gen64def.h; the file is absent on VAX */
index fcfafa01e89ba4daeba1961bac34216e64420fe0..939563805a9ecc87c632dd7f483a1654b5564f7c 100644 (file)
@@ -135,6 +135,8 @@ typedef int BY_HANDLE_FILE_INFORMATION;
 typedef int SE_OBJECT_TYPE;
 typedef int PSNSECINFO;
 typedef int PSNSECINFOW;
+typedef int STARTUPINFO;
+typedef int PROCESS_INFORMATION;
 #endif
 
 #ifndef FEAT_GUI_W32
index f2b1ca7c5a7c18ed612dc509798b216fe84d9148..2aaef3cc8af8f5c30b123269645530e51d16132f 100644 (file)
@@ -741,6 +741,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    512,
 /**/
     511,
 /**/