Source code of Windows XP (NT5)
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.
 
 
 
 
 
 

18 lines
599 B

#include <windows.h>
#include <ntverp.h>
#define VER_FILETYPE VFT_DLL
#define VER_FILESUBTYPE VFT2_UNKNOWN
#define VER_PRODUCTVERSION 4,VER_PRODUCTBUILD,VER_PRODUCTBUILD,1
#if DBG
#define VER_FILEDESCRIPTION_STR "VC 4.x CRT Debug DLL (Forwarded to msvcrtd.dll)"
#define VER_INTERNALNAME_STR "msvcr40d.dll"
#define VER_ORIGINALFILENAME_STR "msvcr40d.dll"
#else
#define VER_FILEDESCRIPTION_STR "VC 4.x CRT DLL (Forwarded to msvcrt.dll)"
#define VER_INTERNALNAME_STR "msvcrt40.dll"
#define VER_ORIGINALFILENAME_STR "msvcrt40.dll"
#endif
#include "common.ver"