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.

46 lines
1.2 KiB

  1. #include <windows.h>
  2. #include <ntverp.h>
  3. #undef VER_PRODUCTNAME_STR
  4. #undef VER_PRODUCTVERSION_STR
  5. /*-----------------------------------------------*/
  6. /* the following lines are specific to this file */
  7. /*-----------------------------------------------*/
  8. /* VER_FILETYPE, VER_FILESUBTYPE, VER_FILEDESCRIPTION_STR
  9. * and VER_INTERNALNAME_STR must be defined before including COMMON.VER
  10. * The strings don't need a '\0', since common.ver has them.
  11. */
  12. #define VER_FILETYPE VFT_DRV
  13. /* possible values: VFT_UNKNOWN
  14. VFT_APP
  15. VFT_DLL
  16. VFT_DRV
  17. VFT_FONT
  18. VFT_VXD
  19. VFT_STATIC_LIB
  20. */
  21. #define VER_FILESUBTYPE VFT2_DRV_NETWORK
  22. /* possible values VFT2_UNKNOWN
  23. VFT2_DRV_PRINTER
  24. VFT2_DRV_KEYBOARD
  25. VFT2_DRV_LANGUAGE
  26. VFT2_DRV_DISPLAY
  27. VFT2_DRV_MOUSE
  28. VFT2_DRV_NETWORK
  29. VFT2_DRV_SYSTEM
  30. VFT2_DRV_INSTALLABLE
  31. VFT2_DRV_SOUND
  32. VFT2_DRV_COMM
  33. */
  34. #define VER_FILEDESCRIPTION_STR "TDI Sample test driver"
  35. #define VER_INTERNALNAME_STR "TDISAMPLE.SYS"
  36. #define VER_ORIGINALFILENAME_STR "TDISAMPLE.SYS"
  37. #define VER_PRODUCTNAME_STR "TDI SAMPLE driver for Windows Server 2003"
  38. #define VER_PRODUCTVERSION_STR VER_FILEVERSION_STR
  39. #include "glbconst.h"
  40. #include "common.ver"