You've already forked lazarus-ccr
23 lines
422 B
ObjectPascal
23 lines
422 B
ObjectPascal
![]() |
{ This file was automatically created by Lazarus. Do not edit!
|
||
|
This source is only used to compile and install the package.
|
||
|
}
|
||
|
|
||
|
unit exctrlspkg_dsgn;
|
||
|
|
||
|
{$warn 5023 off : no warning about unused units}
|
||
|
interface
|
||
|
|
||
|
uses
|
||
|
exctrlsreg, LazarusPackageIntf;
|
||
|
|
||
|
implementation
|
||
|
|
||
|
procedure Register;
|
||
|
begin
|
||
|
RegisterUnit('exctrlsreg', @exctrlsreg.Register);
|
||
|
end;
|
||
|
|
||
|
initialization
|
||
|
RegisterPackage('exctrlspkg_dsgn', @Register);
|
||
|
end.
|