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.
|
|
///////////////////////////////////////////////////////////////////////////// // // syscrt.rc : Defines the version resource for the system version of the // C Runtime Library DLL // /////////////////////////////////////////////////////////////////////////////
#include "winver.h" // extract from windows header
#include "verstamp.h"
#define MKARGSTR2(X) #X #define MKARGSTR(X) MKARGSTR2(X)
VS_VERSION_INFO VERSIONINFO FILEVERSION 7,10,rup,rbld PRODUCTVERSION 7,10,rup,rbld 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" VALUE "FileVersion", "7.10." MKARGSTR(rup) "." MKARGSTR(rbld) #ifdef _DEBUG VALUE "InternalName", "MSVCRTD.DLL" #else VALUE "InternalName", "MSVCRT.DLL" #endif VALUE "LegalCopyright", "\251 Microsoft Corporation. All rights reserved." #ifdef _DEBUG VALUE "OriginalFilename", "MSVCRTD.DLL" #else VALUE "OriginalFilename", "MSVCRT.DLL" #endif VALUE "ProductName", "Microsoft\256 Visual Studio.NET" VALUE "ProductVersion", "7.10." MKARGSTR(rup) "." MKARGSTR(rbld) END END BLOCK "VarFileInfo" BEGIN VALUE "Translation", 0x409, 1200 END END
|