source: rtems/cpukit/zlib/win32/zlib1.rc @ e7fc2fd

4.115
Last change on this file since e7fc2fd was 959f7df2, checked in by Ralf Corsepius <ralf.corsepius@…>, on 10/28/05 at 07:22:42

Import of zlib-1.2.2.2.tar.gz

  • Property mode set to 100644
File size: 1.0 KB
Line 
1#include <windows.h>
2
3#ifdef GCC_WINDRES
4VS_VERSION_INFO         VERSIONINFO
5#else
6VS_VERSION_INFO         VERSIONINFO     MOVEABLE IMPURE LOADONCALL DISCARDABLE
7#endif
8  FILEVERSION           1,2,2,2
9  PRODUCTVERSION        1,2,2,2
10  FILEFLAGSMASK         VS_FFI_FILEFLAGSMASK
11#ifdef _DEBUG
12  FILEFLAGS             1
13#else
14  FILEFLAGS             0
15#endif
16  FILEOS                VOS_DOS_WINDOWS32
17  FILETYPE              VFT_DLL
18  FILESUBTYPE           0       // not used
19BEGIN
20  BLOCK "StringFileInfo"
21  BEGIN
22    BLOCK "040904E4"
23    //language ID = U.S. English, char set = Windows, Multilingual
24    BEGIN
25      VALUE "FileDescription",  "zlib data compression library\0"
26      VALUE "FileVersion",      "1.2.2.2\0"
27      VALUE "InternalName",     "zlib1.dll\0"
28      VALUE "LegalCopyright",   "(C) 1995-2004 Jean-loup Gailly & Mark Adler\0"
29      VALUE "OriginalFilename", "zlib1.dll\0"
30      VALUE "ProductName",      "zlib\0"
31      VALUE "ProductVersion",   "1.2.2.2\0"
32      VALUE "Comments","DLL support by Alessandro Iacopetti & Gilles Vollant\0"
33    END
34  END
35  BLOCK "VarFileInfo"
36  BEGIN
37    VALUE "Translation", 0x0409, 1252
38  END
39END
Note: See TracBrowser for help on using the repository browser.