You've already forked lazarus-ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@7247 8e941d3f-bd1b-0410-a28a-d453659cc2b4
26 lines
344 B
ObjectPascal
26 lines
344 B
ObjectPascal
unit JvPascalInterpreterReg;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils;
|
|
|
|
procedure Register;
|
|
|
|
implementation
|
|
|
|
{$R ..\..\resource\jvpascalinterpreterreg.res}
|
|
|
|
uses
|
|
JvDsgnConsts, JvInterpreter;
|
|
|
|
procedure Register;
|
|
begin
|
|
RegisterComponents(RsPaletteJvclNonVisual, [TJvInterpreterProgram]); //, TJvInterpreterFm]);
|
|
end;
|
|
|
|
end.
|
|
|