File: windll.rc

package info (click to toggle)
zip 2.30-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 3,188 kB
  • ctags: 4,847
  • sloc: ansic: 32,622; asm: 3,426; makefile: 633; sh: 50
file content (75 lines) | stat: -rw-r--r-- 1,991 bytes parent folder | download | duplicates (2)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
  Copyright (c) 1990-1999 Info-ZIP.  All rights reserved.

  See the accompanying file LICENSE, version 1999-Oct-05 or later
  (the contents of which are also included in zip.h) for terms of use.
  If, for some reason, both of these files are missing, the Info-ZIP license
  also may be found at:  ftp://ftp.cdrom.com/pub/infozip/license.html
*/
#include <windows.h>
#ifdef WIN32
#include <winver.h>
#endif
#include "zipver.h"

#ifndef WIN32
VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,1,0,0
PRODUCTVERSION 3,0,0,0
FILEFLAGSMASK 0x3L
#ifndef MSC
FILEOS VOS__WINDOWS16
FILETYPE VFT_DLL
#else
FILEOS 0x1L //VOS__WINDOWS16
FILETYPE 0x2L //VFT_DLL
#endif
BEGIN
    BLOCK "StringFileInfo"
    BEGIN
        BLOCK "040904E4"
        BEGIN
            VALUE "CompanyName", COMPANY_NAME
            VALUE "FileDescription", "Info-ZIP's Zip dll\0"
            VALUE "FileVersion", ZIP_DLL_VERSION
            VALUE "InternalName", "Zip16\0"
            VALUE "LegalCopyright", "Info-ZIP 1997\0"
            VALUE "OriginalFilename", "ZIP16.DLL\0"
            VALUE "ProductName", "Info-ZIP's WiZ\0"
            VALUE "ProductVersion", ZIP_DLL_VERSION
        END
    END
    BLOCK "VarFileInfo"
    BEGIN
        VALUE "Translation", 0x409, 1252
    END
END
#else
VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,1,0,0
PRODUCTVERSION 3,0,0,0
FILEFLAGSMASK 0x3L
FILEOS VOS__WINDOWS32
FILETYPE VFT_DLL
BEGIN
    BLOCK "StringFileInfo"
    BEGIN
        BLOCK "040904E4"
        BEGIN
            VALUE "CompanyName", COMPANY_NAME
            VALUE "FileDescription", "Info-ZIP's Zip dll\0"
            VALUE "FileVersion", ZIP_DLL_VERSION
            VALUE "InternalName", "Zip32\0"
            VALUE "LegalCopyright", "Info-ZIP 1997\0"
            VALUE "OriginalFilename", "ZIP32.DLL\0"
            VALUE "ProductName", "Info-ZIP's WiZ\0"
            VALUE "ProductVersion", ZIP_DLL_VERSION
        END
    END
    BLOCK "VarFileInfo"
    BEGIN
        VALUE "Translation", 0x409, 1252
    END
END
#endif