Skip to content
Snippets Groups Projects
Commit 3f97ebf7 authored by Bram Moolenaar's avatar Bram Moolenaar
Browse files

Workaround for missing RegDeleteKeyEx() method.

parent e04abda5
No related merge requests found
......@@ -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
......
......@@ -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
/*****************************************************************************
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment