1
2/* Copyright (C) 2009 by Daniel Stenberg
3 *
4 * Permission to use, copy, modify, and distribute this
5 * software and its documentation for any purpose and without
6 * fee is hereby granted, provided that the above copyright
7 * notice appear in all copies and that both that copyright
8 * notice and this permission notice appear in supporting
9 * documentation, and that the name of M.I.T. not be used in
10 * advertising or publicity pertaining to distribution of the
11 * software without specific, written prior permission.
12 * M.I.T. makes no representations about the suitability of
13 * this software for any purpose.  It is provided "as is"
14 * without express or implied warranty.
15 */
16
17#include <winver.h>
18#include "ares_version.h"
19
20LANGUAGE  0x09,0x01
21
22#define RC_VERSION  ARES_VERSION_MAJOR, ARES_VERSION_MINOR, ARES_VERSION_PATCH, 0
23
24VS_VERSION_INFO VERSIONINFO
25  FILEVERSION     RC_VERSION
26  PRODUCTVERSION  RC_VERSION
27  FILEFLAGSMASK   0x3fL
28#if defined(DEBUGBUILD) || defined(_DEBUG)
29  FILEFLAGS 1
30#else
31  FILEFLAGS 0
32#endif
33  FILEOS      VOS__WINDOWS32
34  FILETYPE    VFT_DLL
35  FILESUBTYPE 0x0L
36
37BEGIN
38  BLOCK "StringFileInfo"
39  BEGIN
40    BLOCK "040904b0"
41    BEGIN
42      VALUE "CompanyName",      "The c-ares library, http://c-ares.haxx.se/\0"
43#if defined(DEBUGBUILD) || defined(_DEBUG)
44      VALUE "FileDescription",  "c-ares Debug Shared Library\0"
45      VALUE "FileVersion",      ARES_VERSION_STR "\0"
46      VALUE "InternalName",     "c-ares\0"
47      VALUE "OriginalFilename", "caresd.dll\0"
48#else
49      VALUE "FileDescription",  "c-ares Shared Library\0"
50      VALUE "FileVersion",      ARES_VERSION_STR "\0"
51      VALUE "InternalName",     "c-ares\0"
52      VALUE "OriginalFilename", "cares.dll\0"
53#endif
54      VALUE "ProductName",      "The c-ares library\0"
55      VALUE "ProductVersion",   ARES_VERSION_STR "\0"
56      VALUE "LegalCopyright",   "� " ARES_COPYRIGHT "\0"
57      VALUE "License",          "http://c-ares.haxx.se/license.html\0"
58    END
59  END
60
61  BLOCK "VarFileInfo"
62  BEGIN
63    VALUE "Translation", 0x409, 1200
64  END
65END
66