diff src/if_ole.cpp @ 2469:336d6df580e7 vim73

Workaround for missing RegDeleteKeyEx() method.
author Bram Moolenaar <bram@vim.org>
date Mon, 02 Aug 2010 20:26:43 +0200
parents 7a537d53b3ed
children a29301e7c05f
line wrap: on
line diff
--- a/src/if_ole.cpp
+++ b/src/if_ole.cpp
@@ -91,6 +91,7 @@ static CVim *app = 0;
  */
 # ifndef KEY_WOW64_64KEY
 #  define KEY_WOW64_64KEY 0x0100
+#  define RegDeleteKeyEx(a, b, c, d) RegDeleteKey(a, b)
 # endif
 
 /*****************************************************************************