![]() |
Shadowrun: Awakened 29 September 2011 - Build 871
|
00001 #pragma once 00002 00003 // The following macros define the minimum required platform. The minimum required platform 00004 // is the earliest version of Windows, Internet Explorer etc. that has the necessary features to run 00005 // your application. The macros work by enabling all features available on platform versions up to and 00006 // including the version specified. 00007 00008 // Modify the following defines if you have to target a platform prior to the ones specified below. 00009 // Refer to MSDN for the latest info on corresponding values for different platforms. 00010 #ifndef WINVER // Specifies that the minimum required platform is Windows Vista. 00011 #define WINVER 0x0600 // Change this to the appropriate value to target other versions of Windows. 00012 #endif 00013 00014 #ifndef _WIN32_WINNT // Specifies that the minimum required platform is Windows Vista. 00015 #define _WIN32_WINNT 0x0600 // Change this to the appropriate value to target other versions of Windows. 00016 #endif 00017 00018 #ifndef _WIN32_WINDOWS // Specifies that the minimum required platform is Windows 98. 00019 #define _WIN32_WINDOWS 0x0410 // Change this to the appropriate value to target Windows Me or later. 00020 #endif 00021 00022 #ifndef _WIN32_IE // Specifies that the minimum required platform is Internet Explorer 7.0. 00023 #define _WIN32_IE 0x0700 // Change this to the appropriate value to target other versions of IE. 00024 #endif
Copyright © 2007-2010 by The Shadowrun: Awakened Team. This work is licensed under the GNU Lesser General Public License 3.