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.
148 lines
5.5 KiB
148 lines
5.5 KiB
/****************************************************************************
|
|
* *
|
|
* ATITVSND.RC -- Version information *
|
|
* *
|
|
****************************************************************************/
|
|
|
|
/* ver.h defines constants needed by the VS_VERSION_INFO structure */
|
|
#include "winver.h"
|
|
|
|
/*--------------------------------------------------------------*/
|
|
/* */
|
|
/* CHANGING VERSION? */
|
|
/* */
|
|
/* PLEASE READ! */
|
|
/* */
|
|
/* The version has BOTH hex and string representations. Take */
|
|
/* care that the string version components are PROPERLY */
|
|
/* CONVERTED TO HEX and that the hex values are INSERTED INTO */
|
|
/* THE CORRECT POSITION in the hex versions. */
|
|
/* */
|
|
/* Suppose the version was being defined as: */
|
|
/* */
|
|
/* #define VERSION "9.99.1234" */
|
|
/* */
|
|
/* The other string preresentations of the version would be: */
|
|
/* */
|
|
/* #define VER_PRODUCTVERSION_STR "9.99.1234\0" */
|
|
/* #define VER_PRODUCTVERSION 9,99,0,1234 */
|
|
/* */
|
|
/* The hex versions would NOT be 0x0999????. The correct */
|
|
/* definitions are: */
|
|
/* */
|
|
/* #define VER_PRODUCTVERSION_BUILD 1234 */
|
|
/* #define VER_PRODUCTVERSION_DW (0x09630000 | 1234) */
|
|
/* #define VER_PRODUCTVERSION_W (0x0963) */
|
|
/* */
|
|
/* The last four digits of the build number should be modified */
|
|
/* by the official builder for each build. */
|
|
/* */
|
|
/*--------------------------------------------------------------*/
|
|
|
|
/* #include "buildver.h" */
|
|
#include "ntverp.h"
|
|
|
|
/*--------------------------------------------------------------*/
|
|
/* the following section defines values used in the version */
|
|
/* data structure for all files, and which do not change. */
|
|
/*--------------------------------------------------------------*/
|
|
|
|
#ifdef VER_FILEOS
|
|
#undef VER_FILEOS
|
|
#endif
|
|
|
|
#ifdef VER_FILEFLAGS
|
|
#undef VER_FILEFLAGS
|
|
#endif
|
|
|
|
#ifdef VER_COMPANYNAME_STR
|
|
#undef VER_COMPANYNAME_STR
|
|
#endif
|
|
|
|
#ifdef VER_LEGALTRADEMARKS_STR
|
|
#undef VER_LEGALTRADEMARKS_STR
|
|
#endif
|
|
|
|
#ifdef VER_PRODUCTNAME_STR
|
|
#undef VER_PRODUCTNAME_STR
|
|
#endif
|
|
|
|
#ifdef VER_DEBUG
|
|
#undef VER_DEBUG
|
|
#endif
|
|
|
|
#define VER_DEBUG 0
|
|
#define VER_PRIVATEBUILD 0
|
|
#define VER_PRERELEASE 0
|
|
|
|
#define VER_COPYRIGHT_CURRENT_YEAR "1999"
|
|
#define VER_FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
|
#define VER_FILEOS VOS_DOS_WINDOWS16
|
|
#define VER_FILEFLAGS (VER_PRIVATEBUILD|VER_PRERELEASE|VER_DEBUG)
|
|
|
|
#define VER_COMPANYNAME_STR "ATI Technologies Inc.\0"
|
|
|
|
#define VER_FILETYPE VFT_DLL
|
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
|
#define VER_FILEDESCRIPTION_STR "ATI WDM TV Sound MiniDriver"
|
|
#define VER_INTERNALNAME_STR "atitvsnd.sys"
|
|
#define VER_ORIGINALFILENAME_STR "atitvsnd.sys"
|
|
|
|
#define VER_LEGALCOPYRIGHT_YEARS "1999"
|
|
#define VER_LEGALCOPYRIGHT_STR "Copyright (C) ATI Technologies Inc. " VER_LEGALCOPYRIGHT_YEARS
|
|
#define VER_LEGALTRADEMARKS_STR \
|
|
"Microsoft(R) is a registered trademark of Microsoft Corporation. Windows(R) is a trademark of Microsoft Corporation.\0"
|
|
|
|
|
|
#define VER_PRODUCTNAME_STR "ATI WDM TVAUDIO"
|
|
|
|
#define VER_FILEVERSION VER_PRODUCTVERSION
|
|
|
|
#define VER_FILEVERSION_STR VER_PRODUCTVERSION_STR
|
|
|
|
#ifdef EXPORT_CONTROLLED
|
|
|
|
#ifdef EXPORT
|
|
#define EXPORT_TAG " (Export Version)"
|
|
#else
|
|
#define EXPORT_TAG " (US/Canada Only, Not for Export)"
|
|
#endif
|
|
|
|
#else /* Not Export Controlled */
|
|
|
|
#define EXPORT_TAG
|
|
|
|
#endif
|
|
|
|
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" /* LANG_ENGLISH/SUBLANG_ENGLISH_US, Ansi 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
|
|
#ifdef VER_OLESELFREGISTER
|
|
VALUE "OleSelfRegister", "\0"
|
|
#endif
|
|
END
|
|
END
|
|
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
VALUE "Translation", 0x0409, 0x04B0
|
|
END
|
|
END
|