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
1.5 KiB

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. // msvcprt.rc : Defines the version resource for the C++ Runtime Library DLL
  4. //
  5. /////////////////////////////////////////////////////////////////////////////
  6. #include "winver.h" // extract from windows header
  7. #include "verstamp.h"
  8. #define MKARGSTR2(X) #X
  9. #define MKARGSTR(X) MKARGSTR2(X)
  10. VS_VERSION_INFO VERSIONINFO
  11. FILEVERSION 6,10,rup,rbld
  12. PRODUCTVERSION 6,10,rup,rbld
  13. FILEFLAGSMASK 0x3fL
  14. #ifdef _DEBUG
  15. FILEFLAGS VS_FF_DEBUG
  16. #else
  17. FILEFLAGS 0x0L
  18. #endif
  19. FILEOS VOS_NT_WINDOWS32
  20. FILETYPE VFT_DLL
  21. FILESUBTYPE VFT2_UNKNOWN
  22. BEGIN
  23. BLOCK "StringFileInfo"
  24. BEGIN
  25. BLOCK "040904B0"
  26. BEGIN
  27. VALUE "CompanyName", "Microsoft Corporation"
  28. VALUE "FileDescription", "Microsoft\256 C++ Runtime Library"
  29. VALUE "FileVersion", "6.10." MKARGSTR(rup) "." MKARGSTR(rbld)
  30. #ifdef _DEBUG
  31. VALUE "InternalName", "MSVCP60D.DLL"
  32. #else
  33. VALUE "InternalName", "MSVCP60.DLL"
  34. #endif
  35. VALUE "LegalCopyright", "\251 Microsoft Corporation. All rights reserved."
  36. #ifdef _DEBUG
  37. VALUE "OriginalFilename", "MSVCP60D.DLL"
  38. #else
  39. VALUE "OriginalFilename", "MSVCP60.DLL"
  40. #endif
  41. VALUE "ProductName", "Microsoft\256 Visual Studio.NET"
  42. VALUE "ProductVersion", "6.10." MKARGSTR(rup) "." MKARGSTR(rbld)
  43. END
  44. END
  45. BLOCK "VarFileInfo"
  46. BEGIN
  47. VALUE "Translation", 0x409, 1200
  48. END
  49. END