pascalscript/unit-importing/Import/Extendedreg.pas
carlokok afe3fdfd77 re-checkin
git-svn-id: http://code.remobjects.com/svn/pascalscript@1 5c9d2617-0215-0410-a2ee-e80e04d1c6d8
2006-05-30 14:23:25 +00:00

19 lines
422 B
ObjectPascal

unit Extendedreg;
interface
procedure Register;
implementation
uses classes, IFSI_IBX, {IFSI_lumSystem, IFSI_ImpExpStruct,} IFSI_JvMail, IFSI_Dialogs, IFSI_Registry;
procedure Register;
begin
RegisterComponents('Innerfuse', [TIFPS3CE_IBX, {TIFPS3CE_lumSystem, TIFPS3CE_ImpExpStruct,}
TIFPS3CE_JvMail, TIFPS3CE_Dialogs, TIFPS3CE_Registry]);
end;
end.