don't test for WINVER inside the library, we do all the tests at run-time, not compile-time

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34583 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2005-06-07 20:09:58 +00:00
parent ed7fdb8606
commit 6f94aa869d

View File

@@ -75,12 +75,12 @@ aStdKeys[] =
#ifndef __WXWINCE__
{ HKEY_PERFORMANCE_DATA, wxT("HKEY_PERFORMANCE_DATA"), wxT("HKPD") },
#endif
#if WINVER >= 0x0400 && !defined(__WXWINCE__)
#ifdef HKEY_CURRENT_CONFIG
{ HKEY_CURRENT_CONFIG, wxT("HKEY_CURRENT_CONFIG"), wxT("HKCC") },
#if !defined(__GNUWIN32__) && !defined(__WXWINCE__)
#endif
#ifdef HKEY_DYN_DATA
{ HKEY_DYN_DATA, wxT("HKEY_DYN_DATA"), wxT("HKDD") }, // short name?
#endif //GNUWIN32
#endif //WINVER >= 4.0
#endif
};
// the registry name separator (perhaps one day MS will change it to '/' ;-)