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

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. // msvcrt40.rc : Defines the version resource for the C Runtime Library forwarder DLL
  4. //
  5. /////////////////////////////////////////////////////////////////////////////
  6. #include "winver.h" // extract from windows header
  7. #include "version.h"
  8. #define MKARGSTR2(X) #X
  9. #define MKARGSTR(X) MKARGSTR2(X)
  10. VS_VERSION_INFO VERSIONINFO
  11. FILEVERSION 5,0,0,rup
  12. PRODUCTVERSION 5,0,0,rup
  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 Forwarder DLL"
  29. VALUE "FileVersion", "5.00." MKARGSTR(rup)
  30. #ifdef _DEBUG
  31. VALUE "InternalName", "MSVCR40D.DLL"
  32. #else
  33. VALUE "InternalName", "MSVCRT40.DLL"
  34. #endif
  35. VALUE "LegalCopyright", "\251 Microsoft Corporation. All rights reserved."
  36. #ifdef _DEBUG
  37. VALUE "OriginalFilename", "MSVCR40D.DLL"
  38. #else
  39. VALUE "OriginalFilename", "MSVCRT40.DLL"
  40. #endif
  41. VALUE "ProductName", "Microsoft\256 Visual Studio.NET"
  42. VALUE "ProductVersion", "5.00." MKARGSTR(rup)
  43. END
  44. END
  45. BLOCK "VarFileInfo"
  46. BEGIN
  47. VALUE "Translation", 0x409, 1200
  48. END
  49. END