afe3fdfd77
git-svn-id: http://code.remobjects.com/svn/pascalscript@1 5c9d2617-0215-0410-a2ee-e80e04d1c6d8
18 lines
376 B
ObjectPascal
18 lines
376 B
ObjectPascal
unit uPS_ExtReg;
|
|
|
|
interface
|
|
|
|
procedure Register;
|
|
|
|
implementation
|
|
|
|
uses classes, uPSI_IBX, uPSI_Mask, upSI_JvMail, uPSI_Dialogs, uPSI_Registry;
|
|
|
|
procedure Register;
|
|
begin
|
|
RegisterComponents('Pascal Script', [TPSImport_IBX, TPSImport_Mask, TPSImport_JvMail,
|
|
TPSImport_Dialogs, TPSImport_Registry]);
|
|
end;
|
|
|
|
end.
|