4f2340eba9
git-svn-id: http://code.remobjects.com/svn/pascalscript@39 5c9d2617-0215-0410-a2ee-e80e04d1c6d8
31 lines
991 B
ObjectPascal
31 lines
991 B
ObjectPascal
unit PascalScript_Core_Ext_Reg;
|
|
|
|
{----------------------------------------------------------------------------}
|
|
{ RemObjects Pascal Script }
|
|
{ }
|
|
{ compiler: Delphi 2 and up, Kylix 3 and up }
|
|
{ platform: Win32, Linux }
|
|
{ }
|
|
{ (c)opyright RemObjects Software. all rights reserved. }
|
|
{ }
|
|
{----------------------------------------------------------------------------}
|
|
|
|
{$I PascalScript.inc}
|
|
|
|
interface
|
|
|
|
procedure Register;
|
|
|
|
implementation
|
|
|
|
uses
|
|
Classes,
|
|
uPSComponentExt;
|
|
|
|
procedure Register;
|
|
begin
|
|
RegisterComponents('RemObjects Pascal Script',[TPSScriptExtension]);
|
|
end;
|
|
|
|
end.
|