lazarus/components/synunihighlighter/synuni.pas
mattias c155fb0148 fixed compilation of synunihighlighter
git-svn-id: trunk@8431 -
2006-01-04 10:46:06 +00:00

23 lines
458 B
ObjectPascal

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