targetver.h
changeset 0 a77691c40066
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/targetver.h	Thu Feb 07 01:10:03 2013 +0100
     1.3 @@ -0,0 +1,24 @@
     1.4 +#pragma once
     1.5 +
     1.6 +// The following macros define the minimum required platform.  The minimum required platform
     1.7 +// is the earliest version of Windows, Internet Explorer etc. that has the necessary features to run 
     1.8 +// your application.  The macros work by enabling all features available on platform versions up to and 
     1.9 +// including the version specified.
    1.10 +
    1.11 +// Modify the following defines if you have to target a platform prior to the ones specified below.
    1.12 +// Refer to MSDN for the latest info on corresponding values for different platforms.
    1.13 +#ifndef WINVER                          // Specifies that the minimum required platform is Windows Vista.
    1.14 +#define WINVER 0x0600           // Change this to the appropriate value to target other versions of Windows.
    1.15 +#endif
    1.16 +
    1.17 +#ifndef _WIN32_WINNT            // Specifies that the minimum required platform is Windows Vista.
    1.18 +#define _WIN32_WINNT 0x0600     // Change this to the appropriate value to target other versions of Windows.
    1.19 +#endif
    1.20 +
    1.21 +#ifndef _WIN32_WINDOWS          // Specifies that the minimum required platform is Windows 98.
    1.22 +#define _WIN32_WINDOWS 0x0410 // Change this to the appropriate value to target Windows Me or later.
    1.23 +#endif
    1.24 +
    1.25 +#ifndef _WIN32_IE                       // Specifies that the minimum required platform is Internet Explorer 7.0.
    1.26 +#define _WIN32_IE 0x0700        // Change this to the appropriate value to target other versions of IE.
    1.27 +#endif