home *** CD-ROM | disk | FTP | other *** search
/ PC Format (South-Africa) 2001 June / PCFJune.iso / Xenon / C++ / FreeCommandLineTools.exe / Include / verinfo.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-01-31  |  1.4 KB  |  48 lines

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