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.
|
|
///////////////////////////////////////////////////////////////////////////// // // 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
|