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