Subversion Repositories autosfx

Rev

Blame | Last modification | View Log | RSS feed

  1. program DiskSpanDemo;
  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.   Main in 'Main.pas' {MainForm},
  30.   AddUnit in 'Addunit.pas' {AddFile},
  31.   ExtrUnit in 'ExtrUnit.pas' {Extract},
  32.   MsgUnit in 'MsgUnit.pas' {Msgform};
  33.  
  34. {$R *.RES}
  35. {.$R '..\..\res\ZMRes19_str.res'}
  36.  
  37. begin
  38.   Application.Initialize;
  39.   Application.Title := 'Disk span demo';
  40.   Application.CreateForm(TMainForm, MainForm);
  41.   Application.CreateForm(TAddFile, AddFile);
  42.   Application.CreateForm(TExtract, Extract);
  43.   Application.CreateForm(TMsgform, Msgform);
  44.   Application.Run;
  45. end.
  46.