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.

43 lines
1.2 KiB

  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 (c) 1992 - 1994 Microsoft Corporation. All Rights Reserved.
  9. *
  10. * VERINFO.H - header file to define the build version
  11. *
  12. **************************************************************************/
  13. #define MMVERSION 1
  14. #define MMREVISION 00
  15. #define MMRELEASE 2
  16. #if defined(DEBUG)
  17. #define VERSIONSTR "Debug Version 1.00.002\0"
  18. #else
  19. #define VERSIONSTR "1.00\0"
  20. #endif
  21. #ifdef RC_INVOKED
  22. #define VERSIONCOMPANYNAME "Microsoft Corp\0"
  23. #define VERSIONPRODUCTNAME "ACM Wrapper for Lernout and Hauspie codec\0"
  24. #define VERSIONCOPYRIGHT "Copyright \251 1995-1999 Microsoft Corporation\0"
  25. /*
  26. * Version flags
  27. */
  28. #if defined(DEBUG)
  29. #define VER_DEBUG VS_FF_DEBUG
  30. #else
  31. #define VER_DEBUG 0
  32. #endif
  33. #define VERSIONFLAGS (VS_FF_PRIVATEBUILD|VS_FF_PRERELEASE|VER_DEBUG)
  34. #define VERSIONFILEFLAGSMASK 0x0030003FL
  35. #endif