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.

41 lines
1.2 KiB

  1. //+----------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 1998 - 1998
  6. //
  7. // File: mmsverp.h
  8. //
  9. // Description: This file contains common definitions for verion definitions
  10. // for WMDM binaries.
  11. //+----------------------------------------------------------------------------
  12. #include <winver.h>
  13. #include <wmdm_build_ver.h>
  14. // WMDM version information
  15. // Version: 1.0.0.BUILD
  16. // Meaning: Major.Minor.Update.Build
  17. #define VER_WMDM_PRODUCTVERSION_STR "8.0.1." VER_WMDM_PRODUCTBUILD_STR
  18. #define VER_WMDM_PRODUCTVERSION 8,0,1,VER_WMDM_PRODUCTBUILD
  19. #define VER_WMDM_PRODUCTNAME_STR "Windows Media Device Manager\0"
  20. #define VER_WMDM_COMPANYNAME_STR "Microsoft Corporation\0"
  21. #define VER_WMDM_LEGALCOPYRIGHT_YEARS "1999-2001\0"
  22. #define VER_WMDM_LEGALCOPYRIGHT_STR "Copyright (C) Microsoft Corp.\0"
  23. #define VER_WMDM_FILEOS VOS_NT_WINDOWS32
  24. #ifdef EXPORT_CONTROLLED
  25. #ifdef EXPORT
  26. #define EXPORT_TAG " (Export Version)\0"
  27. #else
  28. #define EXPORT_TAG " (Domestic Use Only)\0"
  29. #endif
  30. #else /* Not Export Controlled */
  31. #define EXPORT_TAG
  32. #endif