]> git.saurik.com Git - wxWidgets.git/commitdiff
define WINVER as 0x0502 by default (highest possible), not 0x0400; made the comment...
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 7 Sep 2004 20:16:51 +0000 (20:16 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 7 Sep 2004 20:16:51 +0000 (20:16 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29041 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/platform.h

index c7ec88649666d691d8a908f5be3ff01d9d8e16da..359cb4a3b6f0a27c6f2e6e9e1fa61acb695b59e1 100644 (file)
 #    endif
 
     /*
-       see MSDN for the description of possible WINVER values, this one is a
-       good default and, anyhow, we check for most of the features we use
-       during run-time.
+       see MSDN for the description of possible WINVER values, this one is the
+       highest one defined right now (Windows Server 2003) and we use it unless
+       it was explicitly overridden by the user to disable recent features
+       support as we check for all of the features we use which could be not
+       available on earlier Windows systems during run-time anyhow, so there is
+       almost no disadvantage in using it.
      */
 #    ifndef WINVER
-#        define WINVER  0x0400
+#        define WINVER 0x0502
 #    endif
 
     /* Win95 means Win95-style UI, i.e. Win9x/NT 4+ */