Subversion Repositories autosfx

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 daniel-mar 1
Program zipdemo1;
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
  msgunit In 'msgunit.pas' { Msgform } ,
30
  extrunit In 'extrunit.pas' { Extract } ,
31
  Addunit In 'Addunit.pas' { AddForm } ,
32
  sfxunit In 'sfxunit.pas' { MakeSFX } ,
33
  mainunit In 'mainunit.pas' { Mainform } ,
34
  renunit In 'renunit.pas' { RenForm } ;
35
{$R *.RES}
36
{.$R '..\..\Res\ZMRes19_str.res'}
37
{$R '..\..\Res\ZMRes19_sfx.res'}
38
 
39
Begin
40
  Application.Initialize;
41
  Application.Title := 'Zip Demo 1';
42
  Application.CreateForm(TMainform, Mainform);
43
  Application.CreateForm(TMsgform, Msgform);
44
  Application.CreateForm(TExtract, Extract);
45
  Application.CreateForm(TAddForm, AddForm);
46
  Application.CreateForm(TMakeSFX, MakeSFX);
47
  Application.CreateForm(TRenForm, RenForm);
48
  Application.Run;
49
End.