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.
|
|
/******************************************************************************* * * (C) COPYRIGHT MICROSOFT CORPORATION, 1998 * * TITLE: ServUI.RCV * * VERSION: 1.0 * * AUTHOR: orenr * * DATE: 08/22/2000 * * DESCRIPTION: Standard NT version resource * *******************************************************************************/ #ifndef DONT_USE_NT_VERSION #include <winver.h> #include <ntverp.h> #endif
#define VER_FILETYPE VFT_APP #define VER_FILESUBTYPE VFT_UNKNOWN #define VER_FILEDESCRIPTION_STR "UPnP Slideshow Projector UI" #define VER_INTERNALNAME_STR "WIAPRJCTR" // #define VER_LEGALCOPYRIGHT_YEARS "2000" #define VER_ORIGINALFILENAME_STR "WIAPRJCTR.EXE"
#ifndef DONT_USE_NT_VERSION #include <common.ver> #endif
#ifdef DONT_USE_NT_VERSION
VS_VERSION_INFO VERSIONINFO FILEVERSION 1,0,0,1 PRODUCTVERSION 1,0,0,1 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L #else FILEFLAGS 0x0L #endif FILEOS 0x10004L FILETYPE VER_FILETYPE FILESUBTYPE 0x0L BEGIN BLOCK "StringFileInfo" BEGIN BLOCK "040904b0" BEGIN VALUE "CompanyName", "Microsoft\0" VALUE "FileDescription", VER_FILEDESCRIPTION_STR "\0" VALUE "FileVersion", "1, 0, 0, 1\0" VALUE "InternalName", VER_INTERNALNAME_STR "\0" VALUE "LegalCopyright", "Copyright � 2000, Microsoft Corp.\0" VALUE "OriginalFilename", VER_ORIGINALFILENAME_STR "\0" VALUE "ProductName", VER_FILEDESCRIPTION_STR "\0" VALUE "ProductVersion", "1, 0, 0, 1\0" END END BLOCK "VarFileInfo" BEGIN VALUE "Translation", 0x409, 1200 END END
#endif
|