diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-08-02 20:26:43 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-08-02 20:26:43 +0200 |
commit | 3f97ebf7301efaa1d523417f2ef30f1b9c7576c3 (patch) | |
tree | 947081bd9bbf29a28e472bd73aa5e685a4c01815 /src/if_ole.cpp | |
parent | e04abda52f6de060db48049316cf451925369693 (diff) | |
download | vim-git-3f97ebf7301efaa1d523417f2ef30f1b9c7576c3.tar.gz |
Workaround for missing RegDeleteKeyEx() method.
Diffstat (limited to 'src/if_ole.cpp')
-rw-r--r-- | src/if_ole.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/if_ole.cpp b/src/if_ole.cpp index ca8218213..ff9e371a7 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 /***************************************************************************** |