comparison src/if_ole.cpp @ 2469:336d6df580e7 vim73

Workaround for missing RegDeleteKeyEx() method.
author Bram Moolenaar <bram@vim.org>
date Mon, 02 Aug 2010 20:26:43 +0200
parents 7a537d53b3ed
children a29301e7c05f
comparison
equal deleted inserted replaced
2468:7f578da7edb2 2469:336d6df580e7
89 * Modern way of creating registry entries, also works on 64 bit windows when 89 * Modern way of creating registry entries, also works on 64 bit windows when
90 * compiled as a 32 bit program. 90 * compiled as a 32 bit program.
91 */ 91 */
92 # ifndef KEY_WOW64_64KEY 92 # ifndef KEY_WOW64_64KEY
93 # define KEY_WOW64_64KEY 0x0100 93 # define KEY_WOW64_64KEY 0x0100
94 # define RegDeleteKeyEx(a, b, c, d) RegDeleteKey(a, b)
94 # endif 95 # endif
95 96
96 /***************************************************************************** 97 /*****************************************************************************
97 2. The application object 98 2. The application object
98 *****************************************************************************/ 99 *****************************************************************************/