From 21b5902b816cb65bcfe2629fb8b85deb0f14d807 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 8 Feb 2011 13:36:01 +0000 Subject: [PATCH] Define KEY_WOW64_64KEY if it is missing from SDK headers. Fixes compilation with old SDKs, e.g. the one used by VC6. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66860 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/registry.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/msw/registry.cpp b/src/msw/registry.cpp index 0825e131fc..eb666c56f8 100644 --- a/src/msw/registry.cpp +++ b/src/msw/registry.cpp @@ -68,6 +68,10 @@ typedef BYTE* RegBinary; #define HKEY_DYN_DATA ((HKEY)0x80000006) #endif +#ifndef KEY_WOW64_64KEY + #define KEY_WOW64_64KEY 0x0100 +#endif + // ---------------------------------------------------------------------------- // constants // ----------------------------------------------------------------------------