1275793eaSopenharmony_ci#include <windows.h>
2275793eaSopenharmony_ci
3275793eaSopenharmony_ci#define IDR_VERSION1  1
4275793eaSopenharmony_ciIDR_VERSION1	VERSIONINFO	MOVEABLE IMPURE LOADONCALL DISCARDABLE
5275793eaSopenharmony_ci  FILEVERSION	 1, 3, 1, 0
6275793eaSopenharmony_ci  PRODUCTVERSION 1, 3, 1, 0
7275793eaSopenharmony_ci  FILEFLAGSMASK	VS_FFI_FILEFLAGSMASK
8275793eaSopenharmony_ci  FILEFLAGS	0
9275793eaSopenharmony_ci  FILEOS	VOS_DOS_WINDOWS32
10275793eaSopenharmony_ci  FILETYPE	VFT_DLL
11275793eaSopenharmony_ci  FILESUBTYPE	0	// not used
12275793eaSopenharmony_ciBEGIN
13275793eaSopenharmony_ci  BLOCK "StringFileInfo"
14275793eaSopenharmony_ci  BEGIN
15275793eaSopenharmony_ci    BLOCK "040904E4"
16275793eaSopenharmony_ci    //language ID = U.S. English, char set = Windows, Multilingual
17275793eaSopenharmony_ci
18275793eaSopenharmony_ci    BEGIN
19275793eaSopenharmony_ci      VALUE "FileDescription", "zlib data compression and ZIP file I/O library\0"
20275793eaSopenharmony_ci      VALUE "FileVersion",	"1.3.1\0"
21275793eaSopenharmony_ci      VALUE "InternalName",	"zlib\0"
22275793eaSopenharmony_ci      VALUE "OriginalFilename",	"zlibwapi.dll\0"
23275793eaSopenharmony_ci      VALUE "ProductName",	"ZLib.DLL\0"
24275793eaSopenharmony_ci      VALUE "Comments","DLL support by Alessandro Iacopetti & Gilles Vollant\0"
25275793eaSopenharmony_ci      VALUE "LegalCopyright", "(C) 1995-2024 Jean-loup Gailly & Mark Adler\0"
26275793eaSopenharmony_ci    END
27275793eaSopenharmony_ci  END
28275793eaSopenharmony_ci  BLOCK "VarFileInfo"
29275793eaSopenharmony_ci  BEGIN
30275793eaSopenharmony_ci    VALUE "Translation", 0x0409, 1252
31275793eaSopenharmony_ci  END
32275793eaSopenharmony_ciEND
33