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.
31 lines
890 B
31 lines
890 B
/* framewrk\version.ver -- Version info stanza for RC file. */
|
|
|
|
#include "version.h"
|
|
#include "basever.h"
|
|
|
|
VS_VERSION_INFO VERSIONINFO
|
|
FILEVERSION x__VersionNumber__
|
|
PRODUCTVERSION x__VersionNumber__
|
|
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
|
FILEFLAGS VS_FF_PRERELEASE
|
|
FILEOS VOS__WINDOWS32
|
|
FILETYPE VFT_APP
|
|
FILESUBTYPE 0
|
|
{
|
|
BLOCK "StringFileInfo"
|
|
{
|
|
BLOCK "040904E4" /* 0x0409 -- US-English; 0x04E4 -- Windows, Multilingual ?? */
|
|
{
|
|
VALUE "CompanyName", x__VendorFullName__
|
|
VALUE "FileDescription", x__AppFullName__
|
|
VALUE "FileVersion", x__VersionNumberString__
|
|
VALUE "InternalName", x__ExeName__
|
|
VALUE "LegalCopyright", x__Copyright__
|
|
VALUE "LegalTrademarks", x__Trademarks__
|
|
VALUE "OriginalFilename", x__AppFullName__
|
|
VALUE "ProductName", x__AppFullName__
|
|
VALUE "ProductVersion", x__VersionNumberString__
|
|
VALUE "Comments", x__UserAgentString__
|
|
}
|
|
}
|
|
}
|