зеркало из https://github.com/microsoft/msphpsql.git
84 строки
3.4 KiB
Plaintext
84 строки
3.4 KiB
Plaintext
//----------------------------------------------------------------------------------------------------------------------------------
|
|
// File: template.rc
|
|
//
|
|
// Contents: Version resource
|
|
//
|
|
// Microsoft Drivers 5.12 for PHP for SQL Server
|
|
// Copyright(c) Microsoft Corporation
|
|
// All rights reserved.
|
|
// MIT License
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the ""Software""),
|
|
// to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
// and / or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions :
|
|
// The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
// THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
// IN THE SOFTWARE.
|
|
//---------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
#ifdef APSTUDIO_INVOKED
|
|
# error dont edit with MSVC
|
|
#endif
|
|
|
|
#include "winresrc.h"
|
|
#include "main/php_version.h"
|
|
#include "shared/version.h"
|
|
|
|
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
|
#pragma code_page(1252)
|
|
|
|
#ifndef THANKS_GUYS
|
|
# define THANKS_GUYS ""
|
|
#endif
|
|
|
|
#ifdef WANT_LOGO
|
|
0 ICON win32\build\php.ico
|
|
#endif
|
|
|
|
#define XSTRVER4(maj, min, rel, build) #maj "." #min "." #rel "." #build
|
|
#define XSTRVER3(maj, min, rel) #maj "." #min "." #rel
|
|
#define STRVER4(maj, min, rel, build) XSTRVER4(maj, min, rel, build)
|
|
#define STRVER3(maj, min, rel) XSTRVER3(maj, min, rel)
|
|
|
|
//Version
|
|
VS_VERSION_INFO VERSIONINFO
|
|
FILEVERSION SQLVERSION_MAJOR,SQLVERSION_MINOR, SQLVERSION_PATCH, SQLVERSION_BUILD
|
|
PRODUCTVERSION SQLVERSION_MAJOR,SQLVERSION_MINOR, SQLVERSION_PATCH,0
|
|
FILEFLAGSMASK 0x3fL
|
|
#ifdef _DEBUG
|
|
FILEFLAGS VS_FF_DEBUG
|
|
#else
|
|
FILEFLAGS 0x0L
|
|
#endif
|
|
FILEOS VOS__WINDOWS32
|
|
FILETYPE VFT_DLL
|
|
FILESUBTYPE VFT2_UNKNOWN
|
|
BEGIN
|
|
BLOCK "StringFileInfo"
|
|
BEGIN
|
|
BLOCK "040904b0"
|
|
BEGIN
|
|
VALUE "Comments", "This product includes PHP software that is freely available from http://www.php.net/software/. Copyright © 2001-2016 The PHP Group. All rights reserved.\0"
|
|
VALUE "CompanyName", "Microsoft Corp.\0"
|
|
VALUE "FileDescription", "Microsoft Drivers for PHP for SQL Server\0"
|
|
VALUE "FileVersion", STRVER4(SQLVERSION_MAJOR,SQLVERSION_MINOR, SQLVERSION_PATCH, SQLVERSION_BUILD)
|
|
VALUE "InternalName", FILE_NAME "\0"
|
|
VALUE "LegalCopyright", "Copyright Microsoft Corporation.\0"
|
|
VALUE "OriginalFilename", FILE_NAME "\0"
|
|
VALUE "ProductName", "Microsoft Drivers for PHP for SQL Server\0"
|
|
VALUE "ProductVersion", STRVER3(SQLVERSION_MAJOR,SQLVERSION_MINOR, SQLVERSION_PATCH)
|
|
VALUE "URL", "http://www.microsoft.com\0"
|
|
END
|
|
END
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
VALUE "Translation", 0x409, 1200
|
|
END
|
|
END
|
|
|
|
#ifdef MC_INCLUDE
|
|
#include MC_INCLUDE
|
|
#endif
|
|
|