blob: 20963b3261eedd918f0dc592952dd375ef671278 [file] [log] [blame]
Piers Daniell886be472015-02-23 16:23:13 -07001#define WIN32_LEAN_AND_MEAN
2#include <windows.h>
3#include <winver.h>
4
5#define VER_FILEVERSION 1,2,1,1429
6#define VER_FILEVERSION_STR "1.2.1.1429"
7#define VER_FILELTVERSION_STR ""
8#define VER_LEGALCOPYRIGHT_STR "© 2003 Jean-loup Gailly <jloup@gzip.org >, Mark Adler <madler@alumni.caltech.edu>"
9//#define VER_COMMENT_STR ""
10
11#define VER_FILEDESCRIPTION_STR "Zlib: general purpose data compression / decompression library"
12#define VER_INTERNALNAME_STR "example-static"
13#define VER_ORIGINALFILENAME_STR "example-static.exe"
14#define VER_WWW_STR "http://www.gzip.org/zlib"
15#define VER_COMPANYNAME_STR "Zlib"
16#define VER_LICENSE_STR " (C) 1995-2002 Jean-loup Gailly and Mark Adler This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. Jean-loup Gailly Mark Adler jloup@gzip.org madler@alumni.caltech.edu"
17#define VER_LEGALTRADEMARKS_STR "Zlib®, example-static®"
18
19#define VER_PRODUCTNAME_STR "Zlib"
20#define VER_PRODUCTVERSION 1,2,1,1429
21#define VER_PRODUCTVERSION_STR "1.2.1.1429"
22
23#undef OFFICIAL
24#define FINAL 1
25
26#define GNUWIN32_SPECIALBUILD_STR "GNU for Win32 <gnuwin32.sourceforge.net>"
27
28#define VER_FILETYPE VFT_APP
29#ifndef VER_FILETYPE
30#define VER_FILETYPE VFT_APP
31#endif
32
33#define VER_FILESUBTYPE VFT2_UNKNOWN
34
35#ifndef DEBUG
36#define VER_DEBUG 0
37#else /* DEBUG */
38#define VER_DEBUG VS_FF_DEBUG
39#endif
40
41#ifndef PATCHED
42#define VER_PATCHED 0
43#else /* PATCHED */
44#define VER_PATCHED VS_FF_PATCHED
45#endif
46
47#ifndef OFFICIAL
48#define VER_SPECIALBUILD VS_FF_SPECIALBUILD
49#ifndef VER_SPECIALBUILD_STR
50#define VER_SPECIALBUILD_STR GNUWIN32_SPECIALBUILD_STR
51#endif
52#else /* OFFICIAL */
53#define VER_SPECIALBUILD 0
54#endif /* OFFICIAL */
55
56#ifndef FINAL
57#define VER_PRIVATEBUILD VS_FF_PRIVATEBUILD
58#ifndef VER_PRIVATEBUILD_STR
59#define VER_PRIVATEBUILD_STR "Pre-release"
60#endif /* VER_PRIVATEBUILD_STR */
61#define VER_PRERELEASE VS_FF_PRERELEASE
62#else /* FINAL */
63#define VER_PRIVATEBUILD 0
64#define VER_PRERELEASE 0
65#endif /* FINAL */
66
67#define VER_FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
68#define VER_FILEFLAGS (VER_PRIVATEBUILD|VER_SPECIALBUILD|VER_PRERELEASE|VER_DEBUG|VER_PATCHED)
69
70#define VER_FILEOS VOS__WINDOWS32
71
72#ifdef RC_INVOKED
73
74VS_VERSION_INFO VERSIONINFO
75FILEVERSION VER_FILEVERSION
76PRODUCTVERSION VER_PRODUCTVERSION
77FILEFLAGSMASK VER_FILEFLAGSMASK
78FILEFLAGS VER_FILEFLAGS
79FILEOS VER_FILEOS
80FILETYPE VER_FILETYPE
81FILESUBTYPE VER_FILESUBTYPE
82
83BEGIN
84 BLOCK "StringFileInfo"
85 BEGIN
86 BLOCK "040904E4"
87 /* language ID = U.S. English, char set = Windows, Multilingual */
88 BEGIN
89#ifdef VER_COMMENT_STR
90 VALUE "Comments", VER_COMMENT_STR
91#endif
92 VALUE "CompanyName", VER_COMPANYNAME_STR
93 VALUE "License", VER_LICENSE_STR
94 VALUE "FileDescription", VER_FILEDESCRIPTION_STR
95 VALUE "FileVersion", VER_FILEVERSION_STR
96#if !(VER_FILETYPE-VFT_DLL)
97 VALUE "LibToolFileVersion",VER_FILELTVERSION_STR
98#endif
99 VALUE "InternalName", VER_INTERNALNAME_STR
100#ifdef VER_LEGALCOPYRIGHT_STR
101 VALUE "LegalCopyright", VER_LEGALCOPYRIGHT_STR
102#endif
103#ifdef VER_LEGALTRADEMARKS_STR
104 VALUE "LegalTrademarks", VER_LEGALTRADEMARKS_STR
105#endif
106 VALUE "OriginalFilename", VER_ORIGINALFILENAME_STR
107 VALUE "ProductName", VER_PRODUCTNAME_STR
108 VALUE "ProductVersion", VER_PRODUCTVERSION_STR
109#ifdef VER_PATCHLEVEL_STR
110 VALUE "Patch level", VER_PATCHLEVEL_STR
111#endif
112#ifdef VER_PRIVATEBUILD_STR
113 VALUE "PrivateBuild", VER_PRIVATEBUILD_STR
114#endif
115#ifdef VER_SPECIALBUILD_STR
116 VALUE "SpecialBuild", VER_SPECIALBUILD_STR
117#endif
118END
119 END
120 BLOCK "VarFileInfo"
121 BEGIN
122 VALUE "Translation", 0x409, 1252
123 END
124END
125
126#endif /* RC_INVOKED */
127500 ICON MOVEABLE PURE LOADONCALL DISCARDABLE "zlib.ico"