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.

53 lines
2.3 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 vVendor vVendor_h
  9. @module vVendor.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 product. This file is then included by <f vTarget\.rc> to
  13. defined the necessary elements of the target file's version resource.
  14. @head3 Contents |
  15. @index class,mfunc,func,msg,mdata,struct,enum | vVendor_h
  16. @end
  17. */
  18. #ifndef _VVENDOR_H_
  19. #define _VVENDOR_H_
  20. // Short vendor name - no spaces - limit to 32 characters if possible.
  21. #define VER_VENDOR_STR "TriplePoint"
  22. // Long vendor name - legal name of the company.
  23. #define VER_VENDOR_NAME_STR "TriplePoint, Inc."
  24. // Legal copyright notice - limit to to 40 characters for appearance.
  25. #define VER_COPYRIGHT_STR "Copyright \251 1999"
  26. // Short product name - no spaces - limit to 32 characters if possible.
  27. #define VER_PRODUCT_STR "CoIsdn"
  28. // Long product name - usually the same as put on the product packaging.
  29. #define VER_PRODUCT_NAME_STR "TriplePoint COISDN Miniport for Windows."
  30. // Vendor and product name - typically used as a registry key.
  31. #define VER_VENDOR_PRODUCT_STR VER_VENDOR_STR "\\" VER_PRODUCT_STR
  32. // Device description used to identify the device in the NDIS/TAPI user interface.
  33. #define VER_DEVICE_STR "TriplePoint COISDN"
  34. // IEEE Organization Unique Identifier assigned to your company.
  35. #define VER_VENDOR_ID "TPI"
  36. #endif // _VVENDOR_H_