Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
lazarus / usr / share / lazarus / 1.6 / components / PascalScript / Source / PascalScript_RO_Reg.pas
Size: Mime:
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.