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_dll.rc (Created: 5-May-1994) * * Copyright 1994 by Hilgraeve Inc. -- Monroe, MI * All rights reserved * * $Revision: 5 $ * $Date: 3/07/01 10:06a $ */
#include "version.h"
// This file is run through the C-preprocessor so that we can // automatically replace flags that depend on the build type for example. //
VS_VERSION_INFO VERSIONINFO FILEVERSION IDV_FILEVER // Version of this file PRODUCTVERSION IDV_PRODUCTVER // Distributed with Windows 4.0 FILEFLAGSMASK VS_FFI_FILEFLAGSMASK // // NOTE: the VS_FF_PRERELEASE has to be taken out once we go to // production!!! // #if defined(WIN_DEBUG) FILEFLAGS VS_FF_DEBUG | VS_FF_PRERELEASE #else FILEFLAGS 0L | VS_FF_PRERELEASE #endif
FILEOS VOS__WINDOWS32 // for 32-bit Windows 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", IDV_FILEVERSION_STR VALUE "InternalName", "HyperTrm\0" VALUE "LegalCopyright", IDV_LEGALCOPYRIGHT_STR VALUE "LegalTrademarks", IDV_LEGALTRADEMARKS_STR VALUE "OriginalFilename", "HyperTrm.dll\0" VALUE "ProductName", IDV_PRODUCTNAME_STR VALUE "ProductVersion", IDV_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 } }
|