0
0
mirror of https://github.com/vim/vim.git synced 2025-09-18 02:53:56 -04:00

Define the WOW64 key when needed.

This commit is contained in:
Bram Moolenaar 2010-08-01 19:50:25 +02:00
parent c0f15ce171
commit 92096d529e

View File

@ -85,6 +85,14 @@ static CVim *app = 0;
#define MAX_CLSID_LEN 100
/*
* Modern way of creating registry entries, also works on 64 bit windows when
* compiled as a 32 bit program.
*/
# ifndef KEY_WOW64_64KEY
# define KEY_WOW64_64KEY 0x0100
# endif
/*****************************************************************************
2. The application object
*****************************************************************************/