mirror of
https://github.com/SSCLI/sscli_20021101
synced 2026-06-08 12:28:57 +00:00
9fa3874800
Moved the original file to the archive subfolder.
62 lines
2.3 KiB
Plaintext
62 lines
2.3 KiB
Plaintext
// ==++==
|
|
//
|
|
//
|
|
// Copyright (c) 2002 Microsoft Corporation. All rights reserved.
|
|
//
|
|
// The use and distribution terms for this software are contained in the file
|
|
// named license.txt, which can be found in the root of this distribution.
|
|
// By using this software in any fashion, you are agreeing to be bound by the
|
|
// terms of this license.
|
|
//
|
|
// You must not remove this notice, or any other, from this software.
|
|
//
|
|
//
|
|
// ==--==
|
|
//*****************************************************************************
|
|
// remoting.rc
|
|
//
|
|
// Holds version stamp for this program.
|
|
//
|
|
//*****************************************************************************
|
|
|
|
#include <winver.h>
|
|
#include <__file__.ver> //file version info - variable, but same for all files
|
|
#include <__product__.ver> //product version info - variable
|
|
#include <corver.h> //product version info - fixed
|
|
#include "__file__.h" // file version info - fixed per file
|
|
|
|
VS_VERSION_INFO VERSIONINFO
|
|
FILEVERSION VER_FILEVERSION
|
|
PRODUCTVERSION VER_PRODUCTVERSION
|
|
FILEFLAGSMASK VER_FILEFLAGSMASK
|
|
FILEFLAGS VER_FILEFLAGS
|
|
FILEOS VER_FILEOS
|
|
FILETYPE VER_FILETYPE
|
|
BEGIN
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
VALUE "Translation", 0x409, 1252
|
|
// English language (0x409) and the Windows ANSI codepage (1252)
|
|
END
|
|
BLOCK "StringFileInfo"
|
|
BEGIN
|
|
BLOCK "040904E4" // Lang=US English, CharSet=Windows Multilingual
|
|
BEGIN
|
|
// Note: Non-standard value strings must be first as FileManager has a bug
|
|
// that leaves garbage in its name buffer otherwise.
|
|
VALUE "Platform", VER_PLATFORMINFO_STR
|
|
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 "LegalTrademarks", VER_LEGALTRADEMARKS_STR
|
|
VALUE "OriginalFilename",VER_ORIGFILENAME_STR
|
|
VALUE "ProductName", VER_PRODUCTNAME_STR
|
|
VALUE "ProductVersion", VER_PRODUCTVERSION_STR
|
|
VALUE "Comments", VER_FILEDESCRIPTION_STR
|
|
END
|
|
END
|
|
END
|
|
|