home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Multimedia Jumpstart 1.1a / CD_ROM.BIN / develpmt / source / waveconv / wavever.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-09-12  |  1.6 KB  |  67 lines

  1. /*
  2.  *  wavever.h - internal header file to define the build version for waveconv
  3.  *
  4.  */
  5.  
  6. /* 
  7.  *  All strings MUST have an explicit \0  
  8.  *
  9.  *  MMSAMPRELEASE should be changed every build
  10.  *
  11.  *  Version string should be changed each build
  12.  *
  13.  *  Remove build extension on final release
  14.  */
  15.  
  16. #define OFFICIAL                1
  17. #define FINAL                   1
  18.  
  19. #define MMSAMPVERSION            00
  20. #define MMSAMPREVISION           09
  21. #define MMSAMPRELEASE            00
  22.  
  23. #if defined(DEBUG)
  24. #define MMSAMPVERSIONSTR         "Debug Version 0.9.0\0"
  25. #else
  26. #define MMSAMPVERSIONSTR         "Version 0.9\0"
  27. #endif
  28.  
  29.  
  30. /***************************************************************************
  31.  *  DO NOT TOUCH BELOW THIS LINE                                           *
  32.  ***************************************************************************/
  33.  
  34. #ifdef RC_INVOKED
  35.  
  36. #define MMVERSIONCOMPANYNAME    "Microsoft Corporation\0"
  37. #define MMVERSIONPRODUCTNAME    "Waveform Converter Sample Code\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.