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.

68 lines
1.6 KiB

  1. #include <windows.h>
  2. #include <ntverp.h>
  3. #ifdef VER_FILETYPE
  4. #undef VER_FILETYPE
  5. #endif
  6. #define VER_FILETYPE VFT_DLL
  7. #ifdef VER_FILESUBTYPE
  8. #undef VER_FILESUBTYPE
  9. #endif
  10. #define VER_FILESUBTYPE VFT2_UNKNOWN
  11. #ifdef VER_FILEDESCRIPTION_STR
  12. #undef VER_FILEDESCRIPTION_STR
  13. #endif
  14. #define VER_FILEDESCRIPTION_STR "USB Diagnostic Driver For Windows(R) 2000"
  15. #ifdef VER_INTERNALNAME_STR
  16. #undef VER_INTERNALNAME_STR
  17. #endif
  18. #define VER_INTERNALNAME_STR "usbdiag.sys"
  19. #ifdef VER_ORIGINALFILENAME_STR
  20. #undef VER_ORIGINALFILENAME_STR
  21. #endif
  22. #define VER_ORIGINALFILENAME_STR "usbdiag.sys"
  23. #ifdef VER_COMPANYNAME_STR
  24. #undef VER_COMPANYNAME_STR
  25. #endif
  26. #define VER_COMPANYNAME_STR "Intel Corporation & Microsoft Corporation"
  27. #ifdef VER_PRODUCTNAME_STR
  28. #undef VER_PRODUCTNAME_STR
  29. #endif
  30. #define VER_PRODUCTNAME_STR "Diagnostics Driver For Windows(R) 2000"
  31. #ifdef VER_LEGALTRADEMARKS_STR
  32. #undef VER_LEGALTRADEMARKS_STR
  33. #endif
  34. #define VER_LEGALTRADEMARKS_STR \
  35. "Intel(R) is a registered trademark of Intel Corporation. Microsoft(R) is a registered trademark of Microsoft Corporation."
  36. #ifdef VER_LEGALCOPYRIGHT_YEARS
  37. #undef VER_LEGALCOPYRIGHT_YEARS
  38. #endif
  39. #define VER_LEGALCOPYRIGHT_YEARS "1997-1999"
  40. #ifdef VER_LEGALCOPYRIGHT_STR
  41. #undef VER_LEGALCOPYRIGHT_STR
  42. #endif
  43. #define VER_LEGALCOPYRIGHT_STR "Copyright (C) " VER_LEGALCOPYRIGHT_YEARS
  44. //#define VER_PRODUCTVERSION 1,00,00,000
  45. #ifdef VER_PRODUCTVERSION
  46. #undef VER_PRODUCTVERSION
  47. #endif
  48. #define VER_PRODUCTVERSION 3.4
  49. #ifdef VER_PRODUCTVERSION_STR
  50. #undef VER_PRODUCTVERSION_STR
  51. #endif
  52. #define VER_PRODUCTVERSION_STR "3.4"
  53. #include "common.ver"