Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

72 lines
1.8 KiB

  1. /*
  2. * aviver.h - internal header file to define the build version for AVI
  3. *
  4. */
  5. /*
  6. * All strings MUST have an explicit \0
  7. *
  8. * MMSYSRELEASE should be changed every build
  9. *
  10. * Version string should be changed each build
  11. *
  12. * Remove build extension on final release
  13. */
  14. #include "vernum.h"
  15. #define MMSYSVERSION rmj
  16. #define MMSYSREVISION rmm
  17. #define MMSYSRELEASE rup
  18. #if defined(DEBUG_RETAIL)
  19. #define MMSYSVERSIONSTR "Debug Version 1.00\0"
  20. #elif defined(DEBUG)
  21. #define MMSYSVERSIONSTR "Internal Debug Version 1.00\0"
  22. #else
  23. //#define MMSYSVERSIONSTR "Final Beta\0"
  24. #define MMSYSVERSIONSTR "Version 1.00\0"
  25. #endif
  26. #define OFFICIAL
  27. #define FINAL // we are at RC now
  28. /***************************************************************************
  29. * DO NOT TOUCH BELOW THIS LINE *
  30. ***************************************************************************/
  31. #ifdef RC_INVOKED
  32. #define MMVERSIONCOMPANYNAME "Microsoft Corporation\0"
  33. #define MMVERSIONPRODUCTNAME "Microsoft Video For Windows\0"
  34. #define MMVERSIONCOPYRIGHT "Copyright \251 Microsoft Corp. 1991-1992\0"
  35. /*
  36. * Version flags
  37. */
  38. #ifndef OFFICIAL
  39. #define MMVER_PRIVATEBUILD VS_FF_PRIVATEBUILD
  40. #else
  41. #define MMVER_PRIVATEBUILD 0
  42. #endif
  43. #ifndef FINAL
  44. #define MMVER_PRERELEASE VS_FF_PRERELEASE
  45. #else
  46. #define MMVER_PRERELEASE 0
  47. #endif
  48. #if defined(DEBUG_RETAIL)
  49. #define MMVER_DEBUG VS_FF_DEBUG
  50. #elif defined(DEBUG)
  51. #define MMVER_DEBUG VS_FF_DEBUG
  52. #else
  53. #define MMVER_DEBUG 0
  54. #endif
  55. #define MMVERSIONFLAGS (MMVER_PRIVATEBUILD|MMVER_PRERELEASE|MMVER_DEBUG)
  56. #define MMVERSIONFILEFLAGSMASK 0x0000003FL
  57. #endif