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.
63 lines
2.0 KiB
63 lines
2.0 KiB
/* File: D:\WACKER\term\ver_exe.rc (Created: 5-May-1994)
|
|
*
|
|
* Copyright 1994 by Hilgraeve Inc. -- Monroe, MI
|
|
* All rights reserved
|
|
*
|
|
* $Revision: 5 $
|
|
* $Date: 3/07/01 10:06a $
|
|
*/
|
|
|
|
// This file is run through the C-preprocessor so that we can
|
|
// automatically replace flags that depend on the build type for example.
|
|
//
|
|
|
|
#include "version.h"
|
|
|
|
VS_VERSION_INFO VERSIONINFO
|
|
FILEVERSION IDV_FILEVER // Version of this file
|
|
PRODUCTVERSION IDV_PRODUCTVER // Distributed with Windows 4.0
|
|
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK // 0x3fL
|
|
//
|
|
// 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 // 0x3L
|
|
#else
|
|
FILEFLAGS 0L | VS_FF_PRERELEASE // 0x2L
|
|
#endif
|
|
|
|
FILEOS VOS__WINDOWS32 // 0x4L : 32-bit Windows
|
|
FILETYPE VFT_APP // 0x1L/0x2L : or VFT_DLL
|
|
FILESUBTYPE VFT2_UNKNOWN // 0x0L : 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\0"
|
|
VALUE "FileVersion", IDV_FILEVERSION_STR
|
|
VALUE "InternalName", "HyperTrm\0"
|
|
VALUE "LegalCopyright", IDV_LEGALCOPYRIGHT_STR
|
|
VALUE "LegalTrademarks", IDV_LEGALTRADEMARKS_STR
|
|
VALUE "OriginalFilename", "HYPERTRM.EXE\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
|
|
}
|
|
}
|