Subversion Repositories autosfx

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 daniel-mar 1
program zipdemo3;
2
(************************************************************************
3
 Copyright (C) 2009, 2010  by Russell J. Peters, Roger Aelbrecht,
4
      Eric W. Engler and Chris Vleghert.
5
 
6
   This file is part of TZipMaster Version 1.9.
7
 
8
    TZipMaster is free software: you can redistribute it and/or modify
9
    it under the terms of the GNU Lesser General Public License as published by
10
    the Free Software Foundation, either version 3 of the License, or
11
    (at your option) any later version.
12
 
13
    TZipMaster is distributed in the hope that it will be useful,
14
    but WITHOUT ANY WARRANTY; without even the implied warranty of
15
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
    GNU Lesser General Public License for more details.
17
 
18
    You should have received a copy of the GNU Lesser General Public License
19
    along with TZipMaster.  If not, see <http://www.gnu.org/licenses/>.
20
 
21
    contact: problems@delphizip.org (include ZipMaster in the subject).
22
    updates: http://www.delphizip.org
23
    DelphiZip maillist subscribe at http://www.freelists.org/list/delphizip
24
************************************************************************)
25
 
26
 
27
uses
28
  Forms,
29
  Unit1 in 'Unit1.pas' {Form1},
30
  tziplist in 'tziplist.pas' {ZipForm},
31
  extrunit in 'extrunit.pas' {Extract};
32
 
33
{$R *.RES}
34
{.$R '..\..\RES\ZMRes19_str.res'}
35
 
36
begin
37
  Application.Initialize;
38
  Application.CreateForm(TForm1, Form1);
39
  Application.CreateForm(TZipForm, ZipForm);
40
  Application.CreateForm(TExtract, Extract);
41
  Application.Run;
42
end.