File: windll.rc

package info (click to toggle)
unzip 5.52-9etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 5,776 kB
  • ctags: 7,140
  • sloc: ansic: 49,152; cpp: 3,978; makefile: 2,310; asm: 1,583; sh: 91
file content (40 lines) | stat: -rw-r--r-- 1,104 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#include <windows.h>
#if (defined(WIN32) && !defined(__EMX__) && !defined(__MINGW32__))
#include <winver.h>
#endif
#include "../unzvers.h"

VS_VERSION_INFO VERSIONINFO
FILEVERSION UZ_MAJORVER,UZ_MINORVER,UZ_PATCHLEVEL,0
PRODUCTVERSION UZ_MAJORVER,UZ_MINORVER,UZ_PATCHLEVEL,0
FILEFLAGSMASK 0x3L
FILEOS VOS__WINDOWS32
FILETYPE VFT_DLL
BEGIN
    BLOCK "StringFileInfo"
    BEGIN
#ifdef _UNICODE
        BLOCK "040904B0"
#else
        BLOCK "040904E4"
#endif
        BEGIN
            VALUE "CompanyName", IZ_COMPANY_NAME "\0"
            VALUE "FileDescription", "Info-ZIP's UnZip DLL for Win32\0"
            VALUE "FileVersion", UZ_VER_STRING "\0"
            VALUE "InternalName", "UnZip32\0"
            VALUE "LegalCopyright", "Info-ZIP 1996-2005\0"
            VALUE "OriginalFilename", "UNZIP32.DLL\0"
            VALUE "ProductName", "Info-ZIP's UnZip Windows DLL\0"
            VALUE "ProductVersion", UZ_VER_STRING "\0"
        END
    END
    BLOCK "VarFileInfo"
    BEGIN
#ifdef _UNICODE
        VALUE "Translation", 0x409, 1200
#else
        VALUE "Translation", 0x409, 1252
#endif
    END
END