wxExtend/res/wxExtend.rc
Simon Rozman 30f289123f Update Copyright and build year
Signed-off-by: Simon Rozman <simon@rozman.si>
2022-01-07 11:20:53 +01:00

58 lines
3.7 KiB
Plaintext
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
SPDX-License-Identifier: GPL-3.0-or-later
Copyright © 2015-2022 Amebis
Copyright © 2016 GÉANT
*/
#pragma code_page(65001) // Instruct RC to read .h files as UTF-8 encoded.
#include "..\\include\\wxex\\common.h"
#pragma code_page(DEFAULT)
#include <windows.h>
/////////////////////////////////////////////////////////////////////////////
// English (United States) resources
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
/////////////////////////////////////////////////////////////////////////////
//
// Version
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION wxEXTEND_VERSION_MAJ,wxEXTEND_VERSION_MIN,wxEXTEND_VERSION_REV,wxEXTEND_VERSION_BUILD
PRODUCTVERSION wxEXTEND_VERSION_MAJ,wxEXTEND_VERSION_MIN,wxEXTEND_VERSION_REV,wxEXTEND_VERSION_BUILD
FILEFLAGSMASK VS_FF_DEBUG | VS_FF_PRERELEASE | VS_FF_PATCHED | VS_FF_PRIVATEBUILD | VS_FF_SPECIALBUILD
#ifdef _DEBUG
FILEFLAGS VS_FF_DEBUG
#else
FILEFLAGS 0x0L
#endif
FILEOS VOS_NT_WINDOWS32
FILETYPE VFT_DLL
FILESUBTYPE 0x0L
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904b0"
BEGIN
VALUE "CompanyName", "Amebis, d. o. o., Kamnik, Slovenia"
VALUE "FileDescription", "wxWidget Extension Library"
VALUE "FileVersion", wxEXTEND_VERSION_STR
VALUE "LegalCopyright", "Copyright © 2015" "-" wxEXTEND_BUILD_YEAR_STR
VALUE "OriginalFilename", "wxExtend.dll"
VALUE "ProductName", "wxExtend"
VALUE "ProductVersion", wxEXTEND_VERSION_STR
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1200
END
END
#endif // English (United States) resources
/////////////////////////////////////////////////////////////////////////////