106 lines
6.3 KiB
Plaintext
106 lines
6.3 KiB
Plaintext
/*
|
|
Copyright ("1991-2015") Amebis
|
|
|
|
This file is part of MSICA.
|
|
|
|
MSICA 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.
|
|
|
|
MSICA 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 MSICA. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#define APSTUDIO_READONLY_SYMBOLS
|
|
#include "..\include\version.h"
|
|
#include <afxres.h>
|
|
#include <winver.h>
|
|
#undef APSTUDIO_READONLY_SYMBOLS
|
|
|
|
#define __(x) x
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// Neutral resources
|
|
|
|
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_NEU)
|
|
#ifdef _WIN32
|
|
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
|
#endif //_WIN32
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Version
|
|
//
|
|
|
|
#ifndef _MAC
|
|
VS_VERSION_INFO VERSIONINFO
|
|
FILEVERSION MSICA_VERSION_MAJ,MSICA_VERSION_MIN,MSICA_VERSION_REV,MSICA_VERSION_BUILD
|
|
PRODUCTVERSION MSICA_VERSION_MAJ,MSICA_VERSION_MIN,MSICA_VERSION_REV,MSICA_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
|
|
//{{LOCALIZE_RESOURCES_START}}
|
|
#if !defined(AFX_RESOURCE_DLL) || defined(__(AFX_TARG_ENU))
|
|
BLOCK __("040904e4")
|
|
BEGIN
|
|
VALUE "CompanyName", __("Amebis, d. o. o., Kamnik, Slovenia")
|
|
VALUE "FileDescription", __("Installation Support Library")
|
|
VALUE "FileVersion", MSICA_VERSION_STR
|
|
VALUE "InternalName", __("MSICA")
|
|
VALUE "LegalCopyright", __("Copyright © Amebis, 2012") "-" MSICA_BUILD_YEAR_STR
|
|
VALUE "ProductName", __("MSICA")
|
|
VALUE "ProductVersion", MSICA_VERSION_STR
|
|
END
|
|
#endif
|
|
//{{LOCALIZE_RESOURCES_END}}
|
|
END
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
VALUE "Translation",
|
|
//{{LOCALIZE_RESOURCES_START}}
|
|
#if !defined(AFX_RESOURCE_DLL) || defined(__(AFX_TARG_ENU))
|
|
__(0x409), __(1252),
|
|
#endif
|
|
//{{LOCALIZE_RESOURCES_END}}
|
|
END
|
|
END
|
|
#endif
|
|
|
|
#endif // Neutral resources
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// Localizable resources
|
|
|
|
//{{LOCALIZE_RESOURCES_START}}
|
|
#if !defined(AFX_RESOURCE_DLL) || defined(__(AFX_TARG_ENU))
|
|
#ifdef _WIN32
|
|
LANGUAGE __(LANG_ENGLISH), __(SUBLANG_DEFAULT)
|
|
#endif //_WIN32
|
|
|
|
|
|
// TODO: Add language dependent resources here (string tables, dialogs).
|
|
|
|
|
|
#endif
|
|
//{{LOCALIZE_RESOURCES_END}}
|
|
/////////////////////////////////////////////////////////////////////////////
|