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.
81 lines
2.1 KiB
81 lines
2.1 KiB
// Below was copied from "common.ver" and was modified for localized version.
|
|
|
|
#ifndef VER_LEGALCOPYRIGHT_YEARS
|
|
#define VER_LEGALCOPYRIGHT_YEARS "1981-1996"
|
|
#endif
|
|
|
|
#ifndef VER_LEGALCOPYRIGHT_STR
|
|
#define VER_LEGALCOPYRIGHT_STR "Copyright (C) Microsoft Corp. " VER_LEGALCOPYRIGHT_YEARS
|
|
#endif
|
|
|
|
#ifndef VER_PRODUCTNAME_STR
|
|
#define VER_PRODUCTNAME_STR "Microsoft (R) Windows NT(TM) Operating System"
|
|
#endif
|
|
|
|
#ifndef VER_PRODUCTVERSION
|
|
#define VER_PRODUCTVERSION 4,00,01,001
|
|
#endif
|
|
|
|
#ifndef VER_FILEVERSION
|
|
#define VER_FILEVERSION VER_PRODUCTVERSION
|
|
#endif
|
|
|
|
#ifndef VER_PRODUCTVERSION_STR
|
|
#define VER_PRODUCTVERSION_STR "4.00"
|
|
#endif
|
|
|
|
#ifndef VER_FILEVERSION_STR
|
|
#define VER_FILEVERSION_STR VER_PRODUCTVERSION_STR
|
|
#endif
|
|
|
|
#ifndef VER_ORIGINALFILENAME_STR
|
|
#define VER_ORIGINALFILENAME_STR VER_INTERNALNAME_STR
|
|
#endif
|
|
|
|
#ifdef EXPORT_CONTROLLED
|
|
|
|
#ifdef EXPORT
|
|
#define EXPORT_TAG " (Export Version)"
|
|
#else
|
|
#define EXPORT_TAG " (Domestic Use Only)"
|
|
#endif
|
|
|
|
#else /* Not Export Controlled */
|
|
|
|
#define EXPORT_TAG
|
|
|
|
#endif
|
|
#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 "040904B0" /* LANG_ENGLISH/SUBLANG_ENGLISH_US, Unicode CP */
|
|
BEGIN
|
|
VALUE "CompanyName", VER_COMPANYNAME_STR
|
|
VALUE "FileDescription", VER_FILEDESCRIPTION_STR EXPORT_TAG
|
|
VALUE "FileVersion", VER_FILEVERSION_STR
|
|
VALUE "InternalName", VER_INTERNALNAME_STR
|
|
VALUE "LegalCopyright", VER_LEGALCOPYRIGHT_STR
|
|
VALUE "OriginalFilename",VER_ORIGINALFILENAME_STR
|
|
VALUE "ProductName", VER_PRODUCTNAME_STR
|
|
VALUE "ProductVersion", VER_PRODUCTVERSION_STR
|
|
END
|
|
|
|
END
|
|
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
VALUE "Translation", 0x0409, 0x04B0
|
|
END
|
|
END
|
|
|
|
#endif
|