103 lines
6.4 KiB
Plaintext

/*
Copyright 2015-2018 Amebis
Copyright 2016 GÉANT
This file is part of GÉANTLink.
GÉANTLink is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
GÉANTLink is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with GÉANTLink. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma code_page(65001) // Instruct RC to read .h files as UTF-8 encoded.
#include "..\\..\\include\\Version.h"
#include "..\\..\\lib\\EAPBase\\include\\EAP.h"
#pragma code_page(DEFAULT)
#include <windows.h>
/////////////////////////////////////////////////////////////////////////////
// Neutral resources
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_NEU)
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
/////////////////////////////////////////////////////////////////////////////
//
// Binary
//
IDR_EAP_KEY_PUBLIC RCDATA "..\\..\\include\\KeyPublic.bin"
IDR_EAP_KEY_PRIVATE RCDATA "..\\..\\include\\KeyPrivate.bin"
#endif // Neutral resources
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
// 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 PRODUCT_VERSION_MAJ,PRODUCT_VERSION_MIN,PRODUCT_VERSION_REV,PRODUCT_VERSION_BUILD
PRODUCTVERSION PRODUCT_VERSION_MAJ,PRODUCT_VERSION_MIN,PRODUCT_VERSION_REV,PRODUCT_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", "TTLS EAP Peer Method"
VALUE "FileVersion", PRODUCT_VERSION_STR
VALUE "LegalCopyright", "Copyright © 2016-" PRODUCT_BUILD_YEAR_STR " Amebis & GÉANT"
VALUE "OriginalFilename", "EAPTTLS.dll"
VALUE "ProductName", PRODUCT_NAME_STR
VALUE "ProductVersion", PRODUCT_VERSION_STR
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1200
END
END
/////////////////////////////////////////////////////////////////////////////
//
// String Table
//
STRINGTABLE DISCARDABLE
BEGIN
1 "EAP-TTLS"
END
#endif // English (United States) resources
/////////////////////////////////////////////////////////////////////////////