git-svn-id: https://192.168.0.254/svn/Componentes.Internos.PluginSDK/trunk@2 e72b1707-40e4-cb4a-951e-f3997140195a
36 lines
559 B
ObjectPascal
36 lines
559 B
ObjectPascal
unit uSamplePluginController;
|
|
|
|
interface
|
|
|
|
uses
|
|
uModuleController, uInterfaces, uHostManager;
|
|
|
|
type
|
|
TModuleController1 = class(TModuleController)
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
implementation
|
|
|
|
{$R *.dfm}
|
|
|
|
function GetModule : TModuleController;
|
|
begin
|
|
Result := TModuleController1.Create(nil);
|
|
end;
|
|
|
|
exports
|
|
GetModule name GET_MODULE_FUNC;
|
|
|
|
initialization
|
|
RegisterModuleClass(TModuleController1);
|
|
|
|
finalization
|
|
UnRegisterModuleClass(TModuleController1);
|
|
|
|
|
|
end.
|