1 #pragma once
2 
3 // The macros below define the minimum required platform. The "minimum required platform" means:
4 // Things like the oldest versions of Windows and Internet Explorer having the features required for the application to run.
5 // These macros work by enabling all features available on the platform with the specified version and earlier versions.
6 //
7 
8 // Change the following definition if you need to specify a target platform earlier than that defined below.
9 // For the latest information about values corresponding to other platforms, see
10 // MSDN Library (http://msdn.microsoft.com/en-US/library/windows/desktop).
11 
12 #ifndef NN_LIBRARIES_RDT_CTR_TARGETVER_H_
13 #define NN_LIBRARIES_RDT_CTR_TARGETVER_H_
14 
15 #ifndef _WIN32_WINNT            // This indicates that the minimum required platform is Windows Vista.
16 #define _WIN32_WINNT 0x0600     // Change this to a value appropriate for other Windows versions.
17 #endif
18 
19 #endif // NN_LIBRARIES_RDT_CTR_TARGETVER_H_
20