1 
2 /* The following macros define the minimum required platform.  The minimum required platform
3  * is the earliest version of Windows, Internet Explorer etc. that has the necessary features to run
4  * your application.  The macros work by enabling all features available on platform versions up to and
5  * including the version specified.
6  *
7  * Modify the following defines if you have to target a platform prior to the ones specified below.
8  * Refer to MSDN for the latest info on corresponding values for different platforms.
9  */
10 #ifndef _TARGETVER_H_
11 #define _TARGETVER_H_ 1
12 #ifdef HAVE_WINDOWS_H
13 #ifndef WINVER
14 #define WINVER 0x0600
15 #endif
16 #ifndef _WIN32_WINNT
17 #define _WIN32_WINNT 0x0600
18 #endif
19 #ifndef _WIN32_IE
20 #define _WIN32_IE 0x0700
21 #endif
22 #define _POSIX 1
23 #endif
24 #endif
25