1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
// Windows resources for the libremctl DLL.
//
// Copyright 2008 Matthew Loar
// Copyright 2008
// The Board of Trustees of the Leland Stanford Junior University
//
// SPDX-License-Identifier: MIT
#include <config.h>
#include <winver.h>
#include <winresrc.h>
//
// Version
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION VERSION_MAJOR,VERSION_MINOR,0,0
PRODUCTVERSION VERSION_MAJOR,VERSION_MINOR,0,0
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
#ifdef DEBUG
FILEFLAGS VS_FF_DEBUG
#endif
FILEOS VOS__WINDOWS32
FILETYPE VFT_APP
FILESUBTYPE 0x0L
BEGIN
BLOCK "StringFileInfo"
BEGIN
// 0x0409 == U.S. English; 0x04E4 => Windows Multilingual
BLOCK "040904E4"
BEGIN
VALUE "CompanyName", "\0"
VALUE "FileDescription", "remctl\0"
VALUE "FileVersion", VERSION_MAJOR_STR ", " VERSION_MINOR_STR ", 0, 0\0"
VALUE "InternalName", "REMCTL\0"
VALUE "LegalCopyright", "Copyright 2002-2013 The Board of Trustees of the Leland Stanford Junior University\0"
VALUE "LegalTrademarks", "\0"
VALUE "OriginalFilename", "REMCTL.DLL\0"
VALUE "ProductName", "remctl\0"
VALUE "ProductVersion", VERSION_MAJOR_STR ", " VERSION_MINOR_STR ", 0, 0\0"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 0x4E4
END
END
|