home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / include / verinfo.h < prev    next >
C/C++ Source or Header  |  1998-04-25  |  1KB  |  46 lines

  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 1993 - 1998 Microsoft Corporation.  All Rights Reserved.
  9.  * 
  10.  **************************************************************************/
  11.  
  12.  
  13. #define APPVERSION            4
  14. #define APPREVISION           0
  15. #define APPRELEASE            0
  16.  
  17. #define VERSIONPRODUCTNAME    "Microsoft Windows\0"
  18. #define VERSIONCOPYRIGHT      "Copyright 1991 - 1998 Microsoft Corporation.\0"
  19.  
  20. #define VERSIONSTR            "4.00\0"
  21.  
  22. #define VERSIONCOMPANYNAME    "Microsoft Corporation\0"
  23.  
  24. #ifndef OFFICIAL
  25. #define VER_PRIVATEBUILD      VS_FF_PRIVATEBUILD
  26. #else
  27. #define VER_PRIVATEBUILD      0
  28. #endif
  29.  
  30. #ifndef FINAL
  31. #define VER_PRERELEASE        VS_FF_PRERELEASE
  32. #else
  33. #define VER_PRERELEASE        0
  34. #endif
  35.  
  36. #if defined(DEBUG_RETAIL)
  37. #define VER_DEBUG             VS_FF_DEBUG
  38. #elif defined(DEBUG)
  39. #define VER_DEBUG             VS_FF_DEBUG
  40. #else
  41. #define VER_DEBUG             0
  42. #endif
  43.  
  44. #define VERSIONFLAGS          (VER_PRIVATEBUILD|VER_PRERELEASE|VER_DEBUG)
  45. #define VERSIONFILEFLAGSMASK  0x0030003FL
  46.