1/* MIT License 2 * 3 * Copyright (c) 2009 Daniel Stenberg 4 * 5 * Permission is hereby granted, free of charge, to any person obtaining a copy 6 * of this software and associated documentation files (the "Software"), to deal 7 * in the Software without restriction, including without limitation the rights 8 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 * copies of the Software, and to permit persons to whom the Software is 10 * furnished to do so, subject to the following conditions: 11 * 12 * The above copyright notice and this permission notice (including the next 13 * paragraph) shall be included in all copies or substantial portions of the 14 * Software. 15 * 16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 * SOFTWARE. 23 * 24 * SPDX-License-Identifier: MIT 25 */ 26 27#include <winver.h> 28#include "../../include/ares_version.h" 29 30LANGUAGE 0x09,0x01 31 32#define RC_VERSION ARES_VERSION_MAJOR, ARES_VERSION_MINOR, ARES_VERSION_PATCH, 0 33 34VS_VERSION_INFO VERSIONINFO 35 FILEVERSION RC_VERSION 36 PRODUCTVERSION RC_VERSION 37 FILEFLAGSMASK 0x3fL 38#if defined(DEBUGBUILD) || defined(_DEBUG) 39 FILEFLAGS 1 40#else 41 FILEFLAGS 0 42#endif 43 FILEOS VOS__WINDOWS32 44 FILETYPE VFT_DLL 45 FILESUBTYPE 0x0L 46 47BEGIN 48 BLOCK "StringFileInfo" 49 BEGIN 50 BLOCK "040904b0" 51 BEGIN 52 VALUE "CompanyName", "The c-ares library, https://c-ares.org/\0" 53#if defined(DEBUGBUILD) || defined(_DEBUG) 54 VALUE "FileDescription", "c-ares Debug Shared Library\0" 55 VALUE "FileVersion", ARES_VERSION_STR "\0" 56 VALUE "InternalName", "c-ares\0" 57 VALUE "OriginalFilename", "caresd.dll\0" 58#else 59 VALUE "FileDescription", "c-ares Shared Library\0" 60 VALUE "FileVersion", ARES_VERSION_STR "\0" 61 VALUE "InternalName", "c-ares\0" 62 VALUE "OriginalFilename", "cares.dll\0" 63#endif 64 VALUE "ProductName", "The c-ares library\0" 65 VALUE "ProductVersion", ARES_VERSION_STR "\0" 66 VALUE "LegalCopyright", "� " ARES_COPYRIGHT "\0" 67 VALUE "License", "https://c-ares.org/license.html\0" 68 END 69 END 70 71 BLOCK "VarFileInfo" 72 BEGIN 73 VALUE "Translation", 0x409, 1200 74 END 75END 76