From 3f97ebf7301efaa1d523417f2ef30f1b9c7576c3 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Mon, 2 Aug 2010 20:26:43 +0200 Subject: Workaround for missing RegDeleteKeyEx() method. --- src/dosinst.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/dosinst.h') diff --git a/src/dosinst.h b/src/dosinst.h index b33426ad7..444af45b2 100644 --- a/src/dosinst.h +++ b/src/dosinst.h @@ -89,6 +89,7 @@ char *searchpath(char *name); */ # ifndef KEY_WOW64_64KEY # define KEY_WOW64_64KEY 0x0100 +# define RegDeleteKeyEx(a, b, c, d) RegDeleteKey(a, b) # endif #define VIM_STARTMENU "Programs\\Vim " VIM_VERSION_SHORT -- cgit v1.2.1