144 lines
5.5 KiB
Plaintext
144 lines
5.5 KiB
Plaintext
/********************************************************************/
|
|
/* */
|
|
/* MSLS.RC */
|
|
/* */
|
|
/********************************************************************/
|
|
|
|
#include <winver.h>
|
|
|
|
/*--------------------------------------------------------------*/
|
|
/* the following values should be modified by the official */
|
|
/* builder for each build */
|
|
/*--------------------------------------------------------------*/
|
|
|
|
#ifndef VER_FILEVERSION
|
|
#define VER_FILEVERSION 3,10,349,0
|
|
#define VER_FILEVERSION_STR "3.10.349.0\0"
|
|
#endif
|
|
|
|
/*-----------------------------------------------*/
|
|
/* the following lines are specific to this file */
|
|
/*-----------------------------------------------*/
|
|
|
|
#define VER_PRODUCTVERSION 3,10,0,0
|
|
#define VER_PRODUCTVERSION_STR "3.10\0"
|
|
|
|
#define VER_FILETYPE VFT_DLL
|
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
|
|
|
#define VER_LEGALCOPYRIGHT_STR "Copyright \251 Microsoft Corp. 1996-1999\0"
|
|
|
|
#define VER_FILEDESCRIPTION_STR "Microsoft Line Services library file\0"
|
|
#define VER_INTERNALNAME_STR "msls31\0"
|
|
#define VER_ORIGINALFILENAME_STR "MSLS31.DLL\0"
|
|
|
|
/*--------------------------------------------------------------*/
|
|
/* the following section defines values used in the version */
|
|
/* data structure for all files, and which do not change. */
|
|
/*--------------------------------------------------------------*/
|
|
|
|
/* default is nodebug */
|
|
#ifndef DEBUG
|
|
#define VER_DEBUG 0
|
|
#else
|
|
#define VER_DEBUG VS_FF_DEBUG
|
|
#endif
|
|
|
|
/* default is privatebuild */
|
|
#ifndef OFFICIAL
|
|
#define VER_PRIVATEBUILD VS_FF_PRIVATEBUILD
|
|
#else
|
|
#define VER_PRIVATEBUILD 0
|
|
#endif
|
|
|
|
/* default is prerelease */
|
|
#ifndef FINAL
|
|
#define VER_PRERELEASE VS_FF_PRERELEASE
|
|
#else
|
|
#define VER_PRERELEASE 0
|
|
#endif
|
|
|
|
#define VER_FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
|
#define VER_FILEFLAGS (VER_PRIVATEBUILD|VER_PRERELEASE|VER_DEBUG)
|
|
|
|
#define VER_FILEOS VOS__WINDOWS32
|
|
|
|
#define VER_COMPANYNAME_STR "Microsoft Corporation\0"
|
|
#define VER_PRODUCTNAME_STR "Microsoft\256 Line Services\0"
|
|
#define VER_LEGALTRADEMARKS1_STR "Microsoft\256 is a registered trademark of Microsoft Corporation.\0"
|
|
#define VER_LEGALTRADEMARKS2_STR "Windows(TM) is a trademark of Microsoft Corporation.\0"
|
|
|
|
/*---------------------------------------------------------------*/
|
|
/* */
|
|
/* The following section actually creates the version structure. */
|
|
/* It is ignored if we are not being invoked by RC. */
|
|
/* */
|
|
/* These lines should only be modified for localized versions */
|
|
/* where indicated. */
|
|
/* */
|
|
/*---------------------------------------------------------------*/
|
|
|
|
#ifdef RC_INVOKED
|
|
|
|
VS_VERSION_INFO VERSIONINFO
|
|
FILEVERSION VER_FILEVERSION
|
|
PRODUCTVERSION VER_PRODUCTVERSION
|
|
FILEFLAGSMASK VER_FILEFLAGSMASK
|
|
FILEFLAGS VER_FILEFLAGS
|
|
FILEOS VER_FILEOS
|
|
FILETYPE VER_FILETYPE
|
|
FILESUBTYPE VER_FILESUBTYPE
|
|
BEGIN
|
|
BLOCK "StringFileInfo"
|
|
BEGIN
|
|
BLOCK "040904E4"
|
|
BEGIN
|
|
VALUE "CompanyName", VER_COMPANYNAME_STR
|
|
VALUE "FileDescription", VER_FILEDESCRIPTION_STR
|
|
VALUE "FileVersion", VER_FILEVERSION_STR
|
|
VALUE "InternalName", VER_INTERNALNAME_STR
|
|
VALUE "LegalCopyright", VER_LEGALCOPYRIGHT_STR
|
|
VALUE "LegalTrademarks1", VER_LEGALTRADEMARKS1_STR
|
|
VALUE "LegalTrademarks2", VER_LEGALTRADEMARKS2_STR
|
|
VALUE "OriginalFilename",VER_ORIGINALFILENAME_STR
|
|
VALUE "ProductName", VER_PRODUCTNAME_STR
|
|
VALUE "ProductVersion", VER_PRODUCTVERSION_STR
|
|
END
|
|
#ifdef INTL
|
|
/* this block will be used for localization */
|
|
BLOCK "040904E4"
|
|
BEGIN
|
|
VALUE "CompanyName", VER_COMPANYNAME_STR
|
|
VALUE "FileDescription", VER_FILEDESCRIPTION_STR
|
|
VALUE "FileVersion", VER_FILEVERSION_STR
|
|
VALUE "InternalName", VER_INTERNALNAME_STR
|
|
VALUE "LegalCopyright", VER_LEGALCOPYRIGHT_STR
|
|
VALUE "LegalTrademarks1", VER_LEGALTRADEMARKS1_STR
|
|
VALUE "LegalTrademarks2", VER_LEGALTRADEMARKS2_STR
|
|
VALUE "OriginalFilename",VER_ORIGINALFILENAME_STR
|
|
VALUE "ProductName", VER_PRODUCTNAME_STR
|
|
VALUE "ProductVersion", VER_PRODUCTVERSION_STR
|
|
END
|
|
#endif
|
|
END
|
|
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
/* The following line should only be modified for localized versions. */
|
|
/* It consists of any number of WORD,WORD pairs, with each pair */
|
|
/* describing a language,codepage combination supported by the file. */
|
|
/* */
|
|
/* For example, a file might have values "0x409,1252" indicating that it */
|
|
/* supports English language (0x409) in the Windows ANSI codepage (1252). */
|
|
|
|
VALUE "Translation", 0x409, 1252
|
|
|
|
END
|
|
END
|
|
|
|
#endif
|
|
|
|
/*----------------------------------*/
|
|
/* end of version structure section */
|
|
/*----------------------------------*/
|