|
Last change
on this file since 1106 was 1096, checked in by s10k, 8 years ago |
|
Added zlib, quazip, basicxmlsyntaxhighlighter, conditionalsemaphore and linenumberdisplay libraries. zlib and quazip are pre-compiled, but you can compile them yourself, just delete the dll files (or equivalent binary files to your OS)
|
|
File size:
1.1 KB
|
| Rev | Line | |
|---|
| [1096] | 1 | #include <winver.h>
|
|---|
| 2 | #include "../zlib.h"
|
|---|
| 3 |
|
|---|
| 4 | #ifdef GCC_WINDRES
|
|---|
| 5 | VS_VERSION_INFO VERSIONINFO
|
|---|
| 6 | #else
|
|---|
| 7 | VS_VERSION_INFO VERSIONINFO MOVEABLE IMPURE LOADONCALL DISCARDABLE
|
|---|
| 8 | #endif
|
|---|
| 9 | FILEVERSION ZLIB_VER_MAJOR,ZLIB_VER_MINOR,ZLIB_VER_REVISION,0
|
|---|
| 10 | PRODUCTVERSION ZLIB_VER_MAJOR,ZLIB_VER_MINOR,ZLIB_VER_REVISION,0
|
|---|
| 11 | FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
|---|
| 12 | #ifdef _DEBUG
|
|---|
| 13 | FILEFLAGS 1
|
|---|
| 14 | #else
|
|---|
| 15 | FILEFLAGS 0
|
|---|
| 16 | #endif
|
|---|
| 17 | FILEOS VOS__WINDOWS32
|
|---|
| 18 | FILETYPE VFT_DLL
|
|---|
| 19 | FILESUBTYPE 0 // not used
|
|---|
| 20 | BEGIN
|
|---|
| 21 | BLOCK "StringFileInfo"
|
|---|
| 22 | BEGIN
|
|---|
| 23 | BLOCK "040904E4"
|
|---|
| 24 | //language ID = U.S. English, char set = Windows, Multilingual
|
|---|
| 25 | BEGIN
|
|---|
| 26 | VALUE "FileDescription", "zlib data compression library\0"
|
|---|
| 27 | VALUE "FileVersion", ZLIB_VERSION "\0"
|
|---|
| 28 | VALUE "InternalName", "zlib1.dll\0"
|
|---|
| 29 | VALUE "LegalCopyright", "(C) 1995-2013 Jean-loup Gailly & Mark Adler\0"
|
|---|
| 30 | VALUE "OriginalFilename", "zlib1.dll\0"
|
|---|
| 31 | VALUE "ProductName", "zlib\0"
|
|---|
| 32 | VALUE "ProductVersion", ZLIB_VERSION "\0"
|
|---|
| 33 | VALUE "Comments", "For more information visit http://www.zlib.net/\0"
|
|---|
| 34 | END
|
|---|
| 35 | END
|
|---|
| 36 | BLOCK "VarFileInfo"
|
|---|
| 37 | BEGIN
|
|---|
| 38 | VALUE "Translation", 0x0409, 1252
|
|---|
| 39 | END
|
|---|
| 40 | END
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.