lazarus/components/rx/rx.pas
mattias 0d67131d5f fixed compilation of rx.lpk
git-svn-id: trunk@9447 -
2006-06-19 07:01:10 +00:00

23 lines
425 B
ObjectPascal

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