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.

54 lines
1.5 KiB

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