home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 September / Chip_2002-09_cd1.bin / zkuste / vbasic / Data / Utils / XZipComp.exe / XceedZip.Cab / F112442_DllAPISample.dpr < prev    next >
Encoding:
Text File  |  1999-11-10  |  534 b   |  18 lines

  1. program DllAPISample;
  2. {------------------------------------------------------------------------------}
  3. { Xceed Zip 4 Dll API Sample for Delphi 2, 3, 4 and 5.                         }
  4. { Copyright (c) 1998-1999 Xceed Software Inc.                                  }
  5. {------------------------------------------------------------------------------}
  6.  
  7. uses
  8.   Forms,
  9.   DllAPI in 'DllAPI.pas' {frmDllAPI};
  10.  
  11. {$R *.RES}
  12.  
  13. begin
  14.   Application.Initialize;
  15.   Application.CreateForm(TfrmDllAPI, frmDllAPI);
  16.   Application.Run;
  17. end.
  18.