home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 January / Chip_2003-01_cd1.bin / zkuste / delphi / kompon / d56 / CABD.ZIP / Code / CabSTReg.pas < prev   
Pascal/Delphi Source File  |  2002-08-27  |  444b  |  30 lines

  1. unit CabSTReg;
  2.  
  3. (*
  4.  *  Copyright (c) Ravil Batyrshin, 2001-2002
  5.  *  All Rights Reserved
  6.  *  Version 1.20
  7.  *  Aravil Software
  8.  *  web site: aravilsoft.tripod.com
  9.  *  e-mail: aravilsoft@bigfoot.com, wizeman@mail.ru
  10.  *)
  11.  
  12. interface
  13.  
  14. uses
  15.     Classes, CabSTComps;
  16.  
  17. procedure Register;
  18.  
  19. implementation
  20.  
  21. {$R CabSTComps.dcr}
  22.  
  23. procedure Register;
  24. begin
  25.     RegisterComponents('Samples', [TSTCabReader, TSTCabWriter]);
  26. end;
  27.  
  28. end.
  29.  
  30.