Source code of Windows XP (NT5)
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.

37 lines
1.1 KiB

  1. ///////////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Microsoft WMIOLE DB Provider
  4. // (C) Copyright 1999 Microsoft Corporation. All Rights Reserved.
  5. //
  6. // Wmiver.h - File having declarations for version information
  7. //
  8. //
  9. ///////////////////////////////////////////////////////////////////////////////////
  10. // Constants -----------------------------------------------------------------
  11. #ifndef _AXVER_H_
  12. #define _AXVER_H_
  13. #define VER_FILEVERSION 02,00,2905,0
  14. #define VER_FILEVERSION_STR "02.00.2905.0\0"
  15. #define VER_PRODUCTVERSION 02,00,2905,0
  16. #define VER_PRODUCTVERSION_STR "02.00.2905.0\0"
  17. #define VER_FILEFLAGSMASK (VS_FF_DEBUG | VS_FF_PRERELEASE)
  18. #ifdef DEBUG
  19. #define VER_FILEFLAGS (VS_FF_DEBUG)
  20. #else
  21. #define VER_FILEFLAGS (0)
  22. #endif
  23. #define VER_FILEOS VOS_NT_WINDOWS32
  24. #define VER_COMPANYNAME_STR "Microsoft Corporation\0"
  25. #define VER_PRODUCTNAME_STR "Microsoft OLE DB\0"
  26. #define VER_LEGALCOPYRIGHT_STR "Copyright \251 Microsoft Corporation 1995-1998\0"
  27. // Resource DLL Version Resource ID
  28. #define IDS_RESDLL_VER 1
  29. #endif
  30. //--------------------