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.0 KiB

  1. #include <version.h>
  2. #define Not_VxD
  3. #include <vmm.h>
  4. /*-----------------------------------------------*/
  5. /* the following lines are specific to this file */
  6. /*-----------------------------------------------*/
  7. /* VER_FILETYPE, VER_FILESUBTYPE, VER_FILEDESCRIPTION_STR
  8. * and VER_INTERNALNAME_STR must be defined before including COMMON.VER
  9. * The strings don't need a '\0', since common.ver has them.
  10. */
  11. #define VER_FILETYPE VFT_VXD
  12. /* possible values: VFT_UNKNOWN
  13. VFT_APP
  14. VFT_DLL
  15. VFT_DRV
  16. VFT_FONT
  17. VFT_VXD
  18. VFT_STATIC_LIB
  19. */
  20. #define VER_FILESUBTYPE UNDEFINED_DEVICE_ID
  21. #define VER_FILEDESCRIPTION_STR "Exception Vector Driver (Version 1.0)"
  22. #define VER_INTERNALNAME_STR "EXVector"
  23. #define VER_LEGALCOPYRIGHT_YEARS "2000"
  24. #define VER_LEGALCOPYRIGHT_STR "Copyright \251 Microsoft Corporation" VER_LEGALCOPYRIGHT_YEARS
  25. #define VER_ORIGINALFILENAME_STR "EXVector.Vxd"
  26. #define VER_PRODUCTNAME_STR "Microsoft\256 Device Driver"
  27. #define VER_COMPANYNAME_STR "Microsoft"
  28. #include <common.ver>