VERINFO.H
上传用户:carrie980
上传日期:2013-03-28
资源大小:1143k
文件大小:1k
源码类别:

视频捕捉/采集

开发平台:

Visual C++

  1. /**************************************************************************
  2.  *
  3.  *  THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  4.  *  KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  5.  *  IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
  6.  *  PURPOSE.
  7.  *
  8.  *  Copyright (C) 1993 - 1996  Microsoft Corporation.  All Rights Reserved.
  9.  * 
  10.  **************************************************************************/
  11. #define APPVERSION 4
  12. #define APPREVISION 0
  13. #define APPRELEASE 0
  14. #define VERSIONPRODUCTNAME "Microsoft Windows"
  15. #define VERSIONCOPYRIGHT "Copyright (C)Microsoft Corp. 1991-1995"
  16. #define VERSIONSTR "4.00"
  17. #define VERSIONCOMPANYNAME "Microsoft Corporation"
  18. #ifndef OFFICIAL
  19. #define VER_PRIVATEBUILD VS_FF_PRIVATEBUILD
  20. #else
  21. #define VER_PRIVATEBUILD 0
  22. #endif
  23. #ifndef FINAL
  24. #define VER_PRERELEASE VS_FF_PRERELEASE
  25. #else
  26. #define VER_PRERELEASE 0
  27. #endif
  28. #if defined(DEBUG_RETAIL)
  29. #define VER_DEBUG VS_FF_DEBUG    
  30. #elif defined(DEBUG)
  31. #define VER_DEBUG VS_FF_DEBUG    
  32. #else
  33. #define VER_DEBUG 0
  34. #endif
  35. #define VERSIONFLAGS (VER_PRIVATEBUILD|VER_PRERELEASE|VER_DEBUG)
  36. #define VERSIONFILEFLAGSMASK 0x0030003FL