Go to the documentation of this file.00001
00002 #pragma once
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef WINVER // Specifies that the minimum required platform is Windows Vista.
00012 #define WINVER 0x0600 // Change this to the appropriate value to target other versions of Windows.
00013 #endif
00014
00015 #ifndef _WIN32_WINNT // Specifies that the minimum required platform is Windows Vista.
00016 #define _WIN32_WINNT 0x0600 // Change this to the appropriate value to target other versions of Windows.
00017 #endif
00018
00019 #ifndef _WIN32_WINDOWS // Specifies that the minimum required platform is Windows 98.
00020 #define _WIN32_WINDOWS 0x0410 // Change this to the appropriate value to target Windows Me or later.
00021 #endif
00022
00023 #ifndef _WIN32_IE // Specifies that the minimum required platform is Internet Explorer 7.0.
00024 #define _WIN32_IE 0x0700 // Change this to the appropriate value to target other versions of IE.
00025 #endif
00026