28 lines
425 B
ObjectPascal
28 lines
425 B
ObjectPascal
|
|
unit uReg;
|
||
|
|
|
||
|
|
{$I PluginSDK.inc}
|
||
|
|
|
||
|
|
interface
|
||
|
|
|
||
|
|
procedure Register;
|
||
|
|
|
||
|
|
implementation
|
||
|
|
|
||
|
|
uses
|
||
|
|
Classes,
|
||
|
|
{$IFDEF DELPHI6UP}
|
||
|
|
DesignEditors, DesignIntf, VCLEditors,
|
||
|
|
{$ELSE}
|
||
|
|
DsgnIntf,
|
||
|
|
{$ENDIF DELPHI6UP}
|
||
|
|
ToolsAPI,
|
||
|
|
uHostManager, uModuleController;
|
||
|
|
|
||
|
|
procedure Register;
|
||
|
|
begin
|
||
|
|
RegisterComponents('Rodax Plugin', [THostManager]);
|
||
|
|
RegisterCustomModule(TModuleController, TCustomModule);
|
||
|
|
end;
|
||
|
|
|
||
|
|
end.
|