Files
lazarus-ccr/components/poweredby/latest_stable/poweredby.pas
gbamber a2d7f48162 Updated folder structure
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@5493 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2016-12-14 14:59:44 +00:00

23 lines
471 B
ObjectPascal

{ This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install the package.
}
unit poweredby;
interface
uses
uPoweredby, AboutPoweredbyunit, LazarusPackageIntf;
implementation
procedure Register;
begin
RegisterUnit('uPoweredby', @uPoweredby.Register);
RegisterUnit('AboutPoweredbyunit', @AboutPoweredbyunit.Register);
end;
initialization
RegisterPackage('poweredby', @Register);
end.