1!    VMS Error Message Source File for UnZip
2!
3! Because the facility code was formally assigned by HP, the .FACILITY
4! directive below specifies /SYSTEM.  Because the messages are, in
5! general, specific to UnZip, this file is not compiled with /SHARED.
6! For example:
7!
8!    MESSAGE /OBJECT = [.dest]UNZIP_MSG.OBJ /NOSYMBOLS [.VMS]UNZIP_MSG.MSG
9!
10!    LINK /SHAREABLE = [.dest]UNZIP_MSG.EXE [.dest]UNZIP_MSG.OBJ
11!
12!-----------------------------------------------------------------------
13
14.TITLE  Info-ZIP UnZip Error Messages
15.FACILITY IZ_UNZIP, 1954 /SYSTEM
16.IDENT 'V6.0-000'
17
18! PK_
19.BASE 0
20OK      /SUCCESS      <Normal successful completion>
21.BASE 2
22WARN    /WARNING      <Generic warning - bad CRC, unknown compress method, ...>
23.BASE 4
24ERR     /ERROR        <Error in zipfile>
25.BASE 6
26BADERR  /SEVERE       <Error in zipfile>
27.BASE 8
28MEM     /SEVERE       <insufficient memory (init)>
29.BASE 10
30MEM2    /SEVERE       <insufficient memory (password)>
31.BASE 12
32MEM3    /SEVERE       <insufficient memory (file expand)>
33.BASE 14
34MEM4    /SEVERE       <insufficient memory (memory expand)>
35.BASE 16
36MEM5    /SEVERE       <insufficient memory (???)>
37.BASE 18
38NOZIP   /ERROR        <zipfile not found>
39.BASE 20
40PARAM   /ERROR        <Invalid parameters specified on command line>
41.BASE 22
42FIND    /ERROR        <No files found to extract or view>
43
44.BASE 100
45DISK    /SEVERE       <I/O error - disk full, ...>
46.BASE 102
47EOF     /SEVERE       <Unexpected end-of-file in zipfile>
48
49! IZ_
50.BASE 160
51CTRLC   /ERROR        <User interrupt (CRTL/C)>
52.BASE 162
53UNSUP   /ERROR        <Unsupported compression or encryption for all files>
54.BASE 164
55BADPWD  /ERROR        <Bad decryption password for all files>
56.BASE 166
57ERRBF   /ERROR        <Large-file archive, small-file program>
58
59.END
60