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.

53 lines
2.0 KiB

  1. /*
  2. (C) Copyright 1999
  3. All rights reserved.
  4. Portions of this software are:
  5. (C) Copyright 1997 TriplePoint, Inc. -- http://www.TriplePoint.com
  6. License to use this software is granted under the same terms
  7. outlined in the Microsoft Windows Device Driver Development Kit.
  8. @doc INTERNAL TpiBuild vTarget vTarget_h
  9. @module vTarget.h |
  10. This module defines the version information as displayed in the Windows
  11. file property sheet. You must change the fields below as appropriate
  12. for your target. This file is then included by <f vTarget\.rc> to
  13. define the necessary elements of the target file's version resource.
  14. @head3 Contents |
  15. @index class,mfunc,func,msg,mdata,struct,enum | vTarget_h
  16. @end
  17. */
  18. #ifndef _VTARGET_H_
  19. #define _VTARGET_H_
  20. // The following file should be included from the project's include directory
  21. #include <vProduct.h> // Product specific information
  22. // Base name of this target.
  23. #define VER_TARGET_STR VER_PRODUCT_STR
  24. // File name this target is distributed under.
  25. #define VER_ORIGINAL_FILE_NAME_STR DEFINE_STRING(VER_TARGET_STR ".sys")
  26. // Description displayed in the Windows file property sheet - limit to 40 characters.
  27. #define VER_FILE_DESCRIPTION_STR DEFINE_STRING(VER_PRODUCT_STR \
  28. " NDIS WAN/TAPI Miniport for Windows.")
  29. // Take credit for a job well done...
  30. #define VER_INTERNAL_NAME_STR "[email protected]"
  31. // Look in winver.h for the proper settings of these values.
  32. #define VER_FILE_OS VOS__WINDOWS32 // dwFileOS
  33. #define VER_FILE_TYPE VFT_DRV // dwFileType
  34. #define VER_FILE_SUB_TYPE VFT2_DRV_NETWORK // dwFileSubtype
  35. #endif // _VTARGET_H_