summaryrefslogtreecommitdiffstats
path: root/src/if_ole.cpp
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-08-02 20:26:43 +0200
committerBram Moolenaar <Bram@vim.org>2010-08-02 20:26:43 +0200
commit3f97ebf7301efaa1d523417f2ef30f1b9c7576c3 (patch)
tree947081bd9bbf29a28e472bd73aa5e685a4c01815 /src/if_ole.cpp
parente04abda52f6de060db48049316cf451925369693 (diff)
Workaround for missing RegDeleteKeyEx() method.
Diffstat (limited to 'src/if_ole.cpp')
-rw-r--r--src/if_ole.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/if_ole.cpp b/src/if_ole.cpp
index ca82182136..ff9e371a70 100644
--- 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
/*****************************************************************************