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.
|
|
/* File: D:\WACKER\term\ver_ico.rc (Created: 16-Jun-1995) * * Copyright 1994 by Hilgraeve Inc. -- Monroe, MI * All rights reserved * * $Revision: 1.2 $ * $Date: 1995/11/10 11:45:37 $ */
#include <ntverp.h>
VS_VERSION_INFO VERSIONINFO FILEVERSION VER_PRODUCTVERSION PRODUCTVERSION VER_PRODUCTVERSION FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
FILEFLAGS VER_FILEFLAGS
FILEOS VER_FILEOS FILETYPE VFT_DLL // or VFT_APP FILESUBTYPE VFT2_UNKNOWN // not used with DLLs, EXEs. { BLOCK "StringFileInfo" { // This block describes the language and the character set used. // For example in "04090000" 0409 represents the U.S. English and // 0000 represents 7-bit ASCII char set. // BLOCK "04090000" { VALUE "CompanyName", IDV_COMPANYNAME_STR VALUE "FileDescription", "HyperTerminal Applet Library\0" VALUE "FileVersion", VER_PRODUCTVERSION_STR VALUE "InternalName", "hticons\0" VALUE "LegalCopyright", IDV_LEGALCOPYRIGHT_STR VALUE "LegalTrademarks", IDV_LEGALTRADEMARKS_STR VALUE "OriginalFilename", "HTICONS.DLL\0" VALUE "ProductName", VER_PRODUCTNAME_STR VALUE "ProductVersion", VER_PRODUCTVERSION_STR VALUE "Comments", IDV_COMMENTS_STR // // For special builds include this, also add VS_FF_SPECIALBUILD to // FILEFLAGS. // // VALUE "SpecialBuild", "Reason for special build\0" } } BLOCK "VarFileInfo" { VALUE "Translation", 0x0409, 0 } }
|