targetver.h
上传用户:wjt888999
上传日期:2022-08-11
资源大小:5225k
文件大小:1k
源码类别:

OpenCV

开发平台:

Visual C++

  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