program DiskSpanDemo; (************************************************************************ Copyright (C) 2009, 2010 by Russell J. Peters, Roger Aelbrecht, Eric W. Engler and Chris Vleghert. This file is part of TZipMaster Version 1.9. TZipMaster is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. TZipMaster is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with TZipMaster. If not, see . contact: problems@delphizip.org (include ZipMaster in the subject). updates: http://www.delphizip.org DelphiZip maillist subscribe at http://www.freelists.org/list/delphizip ************************************************************************) uses Forms, Main in 'Main.pas' {MainForm}, AddUnit in 'Addunit.pas' {AddFile}, ExtrUnit in 'ExtrUnit.pas' {Extract}, MsgUnit in 'MsgUnit.pas' {Msgform}; {$R *.RES} {.$R '..\..\res\ZMRes19_str.res'} begin Application.Initialize; Application.Title := 'Disk span demo'; Application.CreateForm(TMainForm, MainForm); Application.CreateForm(TAddFile, AddFile); Application.CreateForm(TExtract, Extract); Application.CreateForm(TMsgform, Msgform); Application.Run; end.