PageRenderTime 45ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/Visual Studio 2008/CppSTLBasics/targetver.h

#
C++ Header | 13 lines | 4 code | 3 blank | 6 comment | 0 complexity | ca1c19b9c013793a766ed9900d6968e0 MD5 | raw file
  1. #pragma once
  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. // Modify the following defines if you have to target a platform prior to the ones specified below.
  7. // Refer to MSDN for the latest info on corresponding values for different platforms.
  8. #ifndef _WIN32_WINNT // Specifies that the minimum required platform is Windows Vista.
  9. #define _WIN32_WINNT 0x0600 // Change this to the appropriate value to target other versions of Windows.
  10. #endif