Subversion Repositories autosfx

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 daniel-mar 1
// Copyright
2
/*
3
 
4
  Copyright (c) 1990-2007 Info-ZIP.  All rights reserved.
5
 
6
  See the accompanying file LICENSE, version 2007-Mar-4 or later
7
  (the contents of which are also included in zip.h) for terms of use.
8
  If, for some reason, all these files are missing, the Info-ZIP license
9
  also may be found at:  ftp://ftp.info-zip.org/pub/infozip/license.html
10
 
11
  parts Copyright (C) 1997 Mike White, Eric W. Engler
12
************************************************************************
13
 Copyright (C) 2009, 2010  by Russell J. Peters, Roger Aelbrecht
14
 
15
   This file is part of TZipMaster Version 1.9.
16
 
17
    TZipMaster is free software: you can redistribute it and/or modify
18
    it under the terms of the GNU Lesser General Public License as published by
19
    the Free Software Foundation, either version 3 of the License, or
20
    (at your option) any later version.
21
 
22
    TZipMaster is distributed in the hope that it will be useful,
23
    but WITHOUT ANY WARRANTY; without even the implied warranty of
24
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25
    GNU Lesser General Public License for more details.
26
 
27
    You should have received a copy of the GNU Lesser General Public License
28
    along with TZipMaster.  If not, see <http://www.gnu.org/licenses/>.
29
 
30
    contact: problems@delphizip.org (include ZipMaster in the subject).
31
    updates: http://www.delphizip.org
32
    DelphiZip maillist subscribe at http://www.freelists.org/list/delphizip
33
************************************************************************/
34
const char *copyright =
35
  {
36
    "\r\nCopyright (C) 1990-2001 Mark Adler, Richard B. Wales, Jean-loup Gailly,\r\n"
37
    "Samuel H. Smith, Greg Roelofs, Robert A. Heath, Mike White, and Eric W. Engler\r\n\r\n"
38
    "Modified Win32 UNZIP DLL by Eric W. Engler and Chris Vleghert\r\n"
39
    "Send bug reports to englere@abraxis.com\r\n"
40
    "\r\n"
41
    "Permission is granted to any individual or institution to use, copy, or\r\n"
42
    "redistribute this DLL so long as it is not sold for profit. If this DLL\r\n"
43
    "is modified in any way, credit must be given to the original authors\r\n"
44
    "identified above in the copyright statement, and the new version must be\r\n"
45
    "given a unique name and your own e-mail address for bug reports.\r\n"
46
    "\r\n"
47
    "Large portions of this DLL are based on code from the Info-Zip project.\r\n"
48
    "Consult their home page for free source code of their official releases:\r\n"
49
    "http://www.cdrom.com/pub/infozip/\r\n"
50
    "\r\n"
51
    "LIKE ANYTHING ELSE THAT'S FREE, THIS DLL AND ANY ASSOCIATED FILES AND\r\n"
52
    "UTILITIES ARE PROVIDED AS-IS AND COME WITH NO WARRANTY OF ANY KIND, EITHER\r\n"
53
    "EXPRESSED OR IMPLIED. IN NO EVENT WILL THE COPYRIGHT HOLDERS BE LIABLE FOR\r\n"
54
    "ANY DAMAGES RESULTING FROM THE USE OF THIS SOFTWARE.\r\n" ""
55
  };
56
 
57
 
58
 
59
 
60
 
61