comparison src/dosinst.h @ 2469:336d6df580e7 vim73

Workaround for missing RegDeleteKeyEx() method.
author Bram Moolenaar <bram@vim.org>
date Mon, 02 Aug 2010 20:26:43 +0200
parents 943280505f72
children 7d1044b27eb5
comparison
equal deleted inserted replaced
2468:7f578da7edb2 2469:336d6df580e7
87 * Modern way of creating registry entries, also works on 64 bit windows when 87 * Modern way of creating registry entries, also works on 64 bit windows when
88 * compiled as a 32 bit program. 88 * compiled as a 32 bit program.
89 */ 89 */
90 # ifndef KEY_WOW64_64KEY 90 # ifndef KEY_WOW64_64KEY
91 # define KEY_WOW64_64KEY 0x0100 91 # define KEY_WOW64_64KEY 0x0100
92 # define RegDeleteKeyEx(a, b, c, d) RegDeleteKey(a, b)
92 # endif 93 # endif
93 94
94 #define VIM_STARTMENU "Programs\\Vim " VIM_VERSION_SHORT 95 #define VIM_STARTMENU "Programs\\Vim " VIM_VERSION_SHORT
95 96
96 int interactive; /* non-zero when running interactively */ 97 int interactive; /* non-zero when running interactively */