Blame cares.rc

Packit 514978
Packit 514978
/* Copyright (C) 2009-2016 by Daniel Stenberg
Packit 514978
 *
Packit 514978
 * Permission to use, copy, modify, and distribute this
Packit 514978
 * software and its documentation for any purpose and without
Packit 514978
 * fee is hereby granted, provided that the above copyright
Packit 514978
 * notice appear in all copies and that both that copyright
Packit 514978
 * notice and this permission notice appear in supporting
Packit 514978
 * documentation, and that the name of M.I.T. not be used in
Packit 514978
 * advertising or publicity pertaining to distribution of the
Packit 514978
 * software without specific, written prior permission.
Packit 514978
 * M.I.T. makes no representations about the suitability of
Packit 514978
 * this software for any purpose.  It is provided "as is"
Packit 514978
 * without express or implied warranty.
Packit 514978
 */
Packit 514978
Packit 514978
#include <winver.h>
Packit 514978
#include "ares_version.h"
Packit 514978
Packit 514978
LANGUAGE  0x09,0x01
Packit 514978
Packit 514978
#define RC_VERSION  ARES_VERSION_MAJOR, ARES_VERSION_MINOR, ARES_VERSION_PATCH, 0
Packit 514978
Packit 514978
VS_VERSION_INFO VERSIONINFO
Packit 514978
  FILEVERSION     RC_VERSION
Packit 514978
  PRODUCTVERSION  RC_VERSION
Packit 514978
  FILEFLAGSMASK   0x3fL
Packit 514978
#if defined(DEBUGBUILD) || defined(_DEBUG)
Packit 514978
  FILEFLAGS 1
Packit 514978
#else
Packit 514978
  FILEFLAGS 0
Packit 514978
#endif
Packit 514978
  FILEOS      VOS__WINDOWS32
Packit 514978
  FILETYPE    VFT_DLL
Packit 514978
  FILESUBTYPE 0x0L
Packit 514978
Packit 514978
BEGIN
Packit 514978
  BLOCK "StringFileInfo"
Packit 514978
  BEGIN
Packit 514978
    BLOCK "040904b0"
Packit 514978
    BEGIN
Packit 514978
      VALUE "CompanyName",      "The c-ares library, https://c-ares.haxx.se/\0"
Packit 514978
#if defined(DEBUGBUILD) || defined(_DEBUG)
Packit 514978
      VALUE "FileDescription",  "c-ares Debug Shared Library\0"
Packit 514978
      VALUE "FileVersion",      ARES_VERSION_STR "\0"
Packit 514978
      VALUE "InternalName",     "c-ares\0"
Packit 514978
      VALUE "OriginalFilename", "caresd.dll\0"
Packit 514978
#else
Packit 514978
      VALUE "FileDescription",  "c-ares Shared Library\0"
Packit 514978
      VALUE "FileVersion",      ARES_VERSION_STR "\0"
Packit 514978
      VALUE "InternalName",     "c-ares\0"
Packit 514978
      VALUE "OriginalFilename", "cares.dll\0"
Packit 514978
#endif
Packit 514978
      VALUE "ProductName",      "The c-ares library\0"
Packit 514978
      VALUE "ProductVersion",   ARES_VERSION_STR "\0"
Packit 514978
      VALUE "LegalCopyright",   "© " ARES_COPYRIGHT "\0"
Packit 514978
      VALUE "License",          "https://c-ares.haxx.se/license.html\0"
Packit 514978
    END
Packit 514978
  END
Packit 514978
Packit 514978
  BLOCK "VarFileInfo"
Packit 514978
  BEGIN
Packit 514978
    VALUE "Translation", 0x409, 1200
Packit 514978
  END
Packit 514978
END