windows-nt/Source/XPSP1/NT/base/crts/libw32/msvcrt40.rc

54 lines
1.4 KiB
Plaintext
Raw Normal View History

2020-09-26 03:20:57 -05:00
/////////////////////////////////////////////////////////////////////////////
//
// msvcrt40.rc : Defines the version resource for the C Runtime Library forwarder DLL
//
/////////////////////////////////////////////////////////////////////////////
#include "winver.h" // extract from windows header
#include "version.h"
#define MKARGSTR2(X) #X
#define MKARGSTR(X) MKARGSTR2(X)
VS_VERSION_INFO VERSIONINFO
FILEVERSION 5,0,0,rup
PRODUCTVERSION 5,0,0,rup
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS VS_FF_DEBUG
#else
FILEFLAGS 0x0L
#endif
FILEOS VOS_NT_WINDOWS32
FILETYPE VFT_DLL
FILESUBTYPE VFT2_UNKNOWN
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904B0"
BEGIN
VALUE "CompanyName", "Microsoft Corporation"
VALUE "FileDescription", "Microsoft\256 C Runtime Library Forwarder DLL"
VALUE "FileVersion", "5.00." MKARGSTR(rup)
#ifdef _DEBUG
VALUE "InternalName", "MSVCR40D.DLL"
#else
VALUE "InternalName", "MSVCRT40.DLL"
#endif
VALUE "LegalCopyright", "\251 Microsoft Corporation. All rights reserved."
#ifdef _DEBUG
VALUE "OriginalFilename", "MSVCR40D.DLL"
#else
VALUE "OriginalFilename", "MSVCRT40.DLL"
#endif
VALUE "ProductName", "Microsoft\256 Visual Studio.NET"
VALUE "ProductVersion", "5.00." MKARGSTR(rup)
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1200
END
END