PageRenderTime 49ms CodeModel.GetById 19ms RepoModel.GetById 1ms app.codeStats 0ms

/Visual Studio 2008/ATLActiveX/targetver.h

#
C Header | 26 lines | 13 code | 7 blank | 6 comment | 0 complexity | fc1b0aba59d8928a4457bca46222ae07 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 WINVER // Specifies that the minimum required platform is Windows Vista.
  9. #define WINVER 0x0600 // Change this to the appropriate value to target other versions of Windows.
  10. #endif
  11. #ifndef _WIN32_WINNT // Specifies that the minimum required platform is Windows Vista.
  12. #define _WIN32_WINNT 0x0600 // Change this to the appropriate value to target other versions of Windows.
  13. #endif
  14. #ifndef _WIN32_WINDOWS // Specifies that the minimum required platform is Windows 98.
  15. #define _WIN32_WINDOWS 0x0410 // Change this to the appropriate value to target Windows Me or later.
  16. #endif
  17. #ifndef _WIN32_IE // Specifies that the minimum required platform is Internet Explorer 7.0.
  18. #define _WIN32_IE 0x0700 // Change this to the appropriate value to target other versions of IE.
  19. #endif