home *** CD-ROM | disk | FTP | other *** search
/ Multimedia Jumpstart / Multimedia Microsoft Jumpstart Version 1.1a (Microsoft).BIN / develpmt / source / transblt / sampver.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-09-21  |  1.5 KB  |  67 lines

  1. /*
  2.  *  sampver.h - internal header file to define the build version for
  3.  *    sample code
  4.  *
  5.  */
  6.  
  7. /* 
  8.  *  All strings MUST have an explicit \0  
  9.  *
  10.  *  MMSAMPRELEASE should be changed every build
  11.  *
  12.  *  Version string should be changed each build
  13.  *
  14.  *  Remove build extension on final release
  15.  */
  16.  
  17. #define OFFICIAL                1
  18. #define FINAL                   1
  19.  
  20. #define MMSAMPVERSION            00
  21. #define MMSAMPREVISION           09
  22. #define MMSAMPRELEASE            00
  23.  
  24. #if defined(DEBUG)
  25. #define MMSAMPVERSIONSTR         "Debug Version 0.9.0\0"
  26. #else
  27. #define MMSAMPVERSIONSTR         "Version 0.9\0"
  28. #endif
  29.  
  30.  
  31. /***************************************************************************
  32.  *  DO NOT TOUCH BELOW THIS LINE                                           *
  33.  ***************************************************************************/
  34.  
  35. #ifdef RC_INVOKED
  36.  
  37. #define MMVERSIONCOMPANYNAME    "Microsoft Corporation\0"
  38. #define MMVERSIONCOPYRIGHT      "Copyright \251 Microsoft Corp. 1992\0"
  39.  
  40. /*
  41.  *  Version flags 
  42.  */
  43.  
  44. #ifndef OFFICIAL
  45. #define MMVER_PRIVATEBUILD      VS_FF_PRIVATEBUILD
  46. #else
  47. #define MMVER_PRIVATEBUILD      0
  48. #endif
  49.  
  50. #ifndef FINAL
  51. #define MMVER_PRERELEASE        VS_FF_PRERELEASE
  52. #else
  53. #define MMVER_PRERELEASE        0
  54. #endif
  55.  
  56. #if defined(DEBUG)
  57. #define MMVER_DEBUG             VS_FF_DEBUG    
  58. #else
  59. #define MMVER_DEBUG             0
  60. #endif
  61.  
  62. #define MMVERSIONFLAGS          (MMVER_PRIVATEBUILD|MMVER_PRERELEASE|MMVER_DEBUG)
  63. #define MMVERSIONFILEFLAGSMASK  0x0000003FL
  64.  
  65.  
  66. #endif
  67.