git-svn-id: https://192.168.0.254/svn/Componentes.Internos.PluginSDK/trunk@2 e72b1707-40e4-cb4a-951e-f3997140195a
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.
|