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.

86 lines
3.1 KiB

  1. /*
  2. �����������������������������������������������������������������������������
  3. (C) Copyright 1999
  4. All rights reserved.
  5. �����������������������������������������������������������������������������
  6. Portions of this software are:
  7. (C) Copyright 1997 TriplePoint, Inc. -- http://www.TriplePoint.com
  8. License to use this software is granted under the same terms
  9. outlined in the Microsoft Windows Device Driver Development Kit.
  10. �����������������������������������������������������������������������������
  11. @doc INTERNAL TpiBuild vProduct vProduct_rc
  12. @module vProduct.rc |
  13. This module defines the product version information.
  14. It is included by all the target components of the
  15. project via the target's <f vTarget\.rc> file.
  16. <f Note>:
  17. This file should not be changed. The definitions used by this file
  18. are defined in <f vVendor\.h>, <f vTarget\.h>, <f vProdNum\.h>, and
  19. <f vTargNum\.h>
  20. @head3 Contents |
  21. @index class,mfunc,func,msg,mdata,struct,enum | vProduct_rc
  22. @end
  23. �����������������������������������������������������������������������������
  24. */
  25. #ifndef _VPRODUCT_RC_
  26. #define _VPRODUCT_RC_
  27. #if !defined(_VTARGET_RC_)
  28. # error You should not include vProduct.rc directly, include vTarget.rc instead.
  29. #endif
  30. #include "vTarget.h" // Target and Product version and build information
  31. #ifndef _MAC
  32. VS_VERSION_INFO VERSIONINFO
  33. FILEVERSION VER_FILE_VERSION_NUM_RC
  34. PRODUCTVERSION VER_COMPONENT_VERSION_NUM_RC
  35. FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
  36. #if defined(_DEBUG) || defined(DEBUG)
  37. FILEFLAGS VS_FF_DEBUG
  38. #else
  39. FILEFLAGS 0x00L
  40. #endif
  41. FILEOS VER_FILE_OS
  42. FILETYPE VER_FILE_TYPE
  43. #if defined(VER_FILE_SUB_TYPE)
  44. FILESUBTYPE VER_FILE_SUB_TYPE
  45. #endif
  46. BEGIN
  47. BLOCK "StringFileInfo"
  48. BEGIN
  49. BLOCK VER_LANGUAGE_STRING
  50. BEGIN
  51. VALUE "Comments", "Developed by TriplePoint, Inc. <www.TriplePoint.com>\0"
  52. VALUE "CompanyName", VER_VENDOR_NAME_STR "\0"
  53. VALUE "FileDescription", VER_FILE_DESCRIPTION_STR "\0"
  54. VALUE "FileVersion", VER_FILE_VERSION_STR_RC "\0"
  55. VALUE "InternalName", VER_INTERNAL_NAME_STR "\0"
  56. VALUE "LegalCopyright", VER_COPYRIGHT_STR ", " VER_VENDOR_NAME_STR "\0"
  57. VALUE "OriginalFilename", VER_ORIGINAL_FILE_NAME_STR "\0"
  58. VALUE "ProductName", VER_PRODUCT_NAME_STR "\0"
  59. VALUE "ProductVersion", VER_PRODUCT_VERSION_STR_RC "\0"
  60. END
  61. END
  62. BLOCK "VarFileInfo"
  63. BEGIN
  64. VALUE "Translation", VER_LANGUAGE_NUM, VER_SUBLANGUAGE_NUM
  65. END
  66. END
  67. #endif // !_MAC
  68. #endif /* _VPRODUCT_RC_ */