pascalscript/Source/PascalScript_RO_Reg.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

35 lines
734 B
ObjectPascal

unit PascalScript_RO_Reg;
{----------------------------------------------------------------------------}
{ RemObjects Pascal Script
{
{ compiler: Delphi 2 and up, Kylix 3 and up
{ platform: Win32, Linux
{
{ (c)opyright RemObjects Software. all rights reserved.
{
{ Using this code requires a valid license of Pascal Script
{ which can be obtained at http://www.remobjects.com.
{----------------------------------------------------------------------------}
{$I PascalScript.inc}
interface
{$R PascalScript_RO_Glyphs.res}
procedure Register;
implementation
uses
Classes,
uROPSServerLink;
procedure Register;
begin
RegisterComponents('Pascal Script', [TPSRemObjectsSdkPlugin]);
end;
end.