11cb0ef41Sopenharmony_ci/* MIT License
21cb0ef41Sopenharmony_ci *
31cb0ef41Sopenharmony_ci * Copyright (c) 2009 Daniel Stenberg
41cb0ef41Sopenharmony_ci *
51cb0ef41Sopenharmony_ci * Permission is hereby granted, free of charge, to any person obtaining a copy
61cb0ef41Sopenharmony_ci * of this software and associated documentation files (the "Software"), to deal
71cb0ef41Sopenharmony_ci * in the Software without restriction, including without limitation the rights
81cb0ef41Sopenharmony_ci * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
91cb0ef41Sopenharmony_ci * copies of the Software, and to permit persons to whom the Software is
101cb0ef41Sopenharmony_ci * furnished to do so, subject to the following conditions:
111cb0ef41Sopenharmony_ci *
121cb0ef41Sopenharmony_ci * The above copyright notice and this permission notice (including the next
131cb0ef41Sopenharmony_ci * paragraph) shall be included in all copies or substantial portions of the
141cb0ef41Sopenharmony_ci * Software.
151cb0ef41Sopenharmony_ci *
161cb0ef41Sopenharmony_ci * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
171cb0ef41Sopenharmony_ci * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
181cb0ef41Sopenharmony_ci * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
191cb0ef41Sopenharmony_ci * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
201cb0ef41Sopenharmony_ci * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
211cb0ef41Sopenharmony_ci * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
221cb0ef41Sopenharmony_ci * SOFTWARE.
231cb0ef41Sopenharmony_ci *
241cb0ef41Sopenharmony_ci * SPDX-License-Identifier: MIT
251cb0ef41Sopenharmony_ci */
261cb0ef41Sopenharmony_ci
271cb0ef41Sopenharmony_ci#include <winver.h>
281cb0ef41Sopenharmony_ci#include "../../include/ares_version.h"
291cb0ef41Sopenharmony_ci
301cb0ef41Sopenharmony_ciLANGUAGE  0x09,0x01
311cb0ef41Sopenharmony_ci
321cb0ef41Sopenharmony_ci#define RC_VERSION  ARES_VERSION_MAJOR, ARES_VERSION_MINOR, ARES_VERSION_PATCH, 0
331cb0ef41Sopenharmony_ci
341cb0ef41Sopenharmony_ciVS_VERSION_INFO VERSIONINFO
351cb0ef41Sopenharmony_ci  FILEVERSION     RC_VERSION
361cb0ef41Sopenharmony_ci  PRODUCTVERSION  RC_VERSION
371cb0ef41Sopenharmony_ci  FILEFLAGSMASK   0x3fL
381cb0ef41Sopenharmony_ci#if defined(DEBUGBUILD) || defined(_DEBUG)
391cb0ef41Sopenharmony_ci  FILEFLAGS 1
401cb0ef41Sopenharmony_ci#else
411cb0ef41Sopenharmony_ci  FILEFLAGS 0
421cb0ef41Sopenharmony_ci#endif
431cb0ef41Sopenharmony_ci  FILEOS      VOS__WINDOWS32
441cb0ef41Sopenharmony_ci  FILETYPE    VFT_DLL
451cb0ef41Sopenharmony_ci  FILESUBTYPE 0x0L
461cb0ef41Sopenharmony_ci
471cb0ef41Sopenharmony_ciBEGIN
481cb0ef41Sopenharmony_ci  BLOCK "StringFileInfo"
491cb0ef41Sopenharmony_ci  BEGIN
501cb0ef41Sopenharmony_ci    BLOCK "040904b0"
511cb0ef41Sopenharmony_ci    BEGIN
521cb0ef41Sopenharmony_ci      VALUE "CompanyName",      "The c-ares library, https://c-ares.org/\0"
531cb0ef41Sopenharmony_ci#if defined(DEBUGBUILD) || defined(_DEBUG)
541cb0ef41Sopenharmony_ci      VALUE "FileDescription",  "c-ares Debug Shared Library\0"
551cb0ef41Sopenharmony_ci      VALUE "FileVersion",      ARES_VERSION_STR "\0"
561cb0ef41Sopenharmony_ci      VALUE "InternalName",     "c-ares\0"
571cb0ef41Sopenharmony_ci      VALUE "OriginalFilename", "caresd.dll\0"
581cb0ef41Sopenharmony_ci#else
591cb0ef41Sopenharmony_ci      VALUE "FileDescription",  "c-ares Shared Library\0"
601cb0ef41Sopenharmony_ci      VALUE "FileVersion",      ARES_VERSION_STR "\0"
611cb0ef41Sopenharmony_ci      VALUE "InternalName",     "c-ares\0"
621cb0ef41Sopenharmony_ci      VALUE "OriginalFilename", "cares.dll\0"
631cb0ef41Sopenharmony_ci#endif
641cb0ef41Sopenharmony_ci      VALUE "ProductName",      "The c-ares library\0"
651cb0ef41Sopenharmony_ci      VALUE "ProductVersion",   ARES_VERSION_STR "\0"
661cb0ef41Sopenharmony_ci      VALUE "LegalCopyright",   "� " ARES_COPYRIGHT "\0"
671cb0ef41Sopenharmony_ci      VALUE "License",          "https://c-ares.org/license.html\0"
681cb0ef41Sopenharmony_ci    END
691cb0ef41Sopenharmony_ci  END
701cb0ef41Sopenharmony_ci
711cb0ef41Sopenharmony_ci  BLOCK "VarFileInfo"
721cb0ef41Sopenharmony_ci  BEGIN
731cb0ef41Sopenharmony_ci    VALUE "Translation", 0x409, 1200
741cb0ef41Sopenharmony_ci  END
751cb0ef41Sopenharmony_ciEND
76