mirror of https://github.com/lianthony/NT4.0
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.
66 lines
1.9 KiB
66 lines
1.9 KiB
//
|
|
// (c) 1995 Microsoft Corporation. All Rights Reserved.
|
|
//
|
|
/* Version Numbering stuff */
|
|
|
|
#define VER_FILEDESCRIPTION_STR "Microsoft\256 Windows(TM) Phone Dialer"
|
|
#define VER_INTERNALNAME_STR "Phone Dialer"
|
|
#define VER_ORIGINALFILENAME_STR "dialer.exe"
|
|
|
|
#ifdef SDKRELEASE
|
|
#include <ver.h>
|
|
|
|
#define VER_PRODUCTVERSION_STR "1.00.150"
|
|
#define VER_PRODUCTVERSION 1,0,0,150
|
|
|
|
VS_VERSION_INFO VERSIONINFO
|
|
FILEVERSION VER_PRODUCTVERSION
|
|
PRODUCTVERSION VER_PRODUCTVERSION
|
|
FILEFLAGSMASK VS_FF_DEBUG | VS_FF_PRERELEASE
|
|
FILEFLAGS VS_FF_DEBUG | VS_FF_PRERELEASE
|
|
FILEOS VOS__WINDOWS16
|
|
FILETYPE VFT_APP
|
|
BEGIN
|
|
BLOCK "StringFileInfo"
|
|
BEGIN
|
|
BLOCK "040904E4"
|
|
BEGIN
|
|
VALUE "CompanyName", "Microsoft Corporation", "\0"
|
|
VALUE "FileDescription", VER_FILEDESCRIPTION_STR, "\0"
|
|
VALUE "FileVersion", VER_PRODUCTVERSION_STR, "\0"
|
|
VALUE "InternalName", VER_INTERNALNAME_STR, "\0"
|
|
VALUE "LegalCopyright", "Copyright 1995 Microsoft Corp", "\0"
|
|
VALUE "OriginalFilename",VER_ORIGINALFILENAME_STR, "\0"
|
|
VALUE "ProductName", "Windows Telephony", "\0"
|
|
VALUE "ProductVersion", VER_PRODUCTVERSION_STR, "\0"
|
|
END
|
|
END
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
/* the following line should be extended for localized versions */
|
|
VALUE "Translation", 0x0409, 0x04E4
|
|
END
|
|
END
|
|
#else
|
|
|
|
|
|
// Is the following FLAG good to use for this?
|
|
#ifdef NT_INST
|
|
#include <ntverp.h>
|
|
#else
|
|
#include <version.h>
|
|
#endif
|
|
|
|
#define VER_LEGALCOPYRIGHT_STR "Copyright \251 Microsoft Corporation 1995. All Rights Reserved."
|
|
|
|
#define VER_FILETYPE VFT_APP
|
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
|
|
|
#include <common.ver>
|
|
|
|
// /////////////////////////////////////////////////////////////////////////
|
|
// /////////////////////////////////////////////////////////////////////////
|
|
|
|
// #include <tapiver.h>
|
|
// #include <common.ver>
|
|
#endif
|