lazarus-ccr/components/lazautoupdate/latest_stable/lazupdate.pas
gbamber 7046b88864 To V0.3.4.0 Work-in-progress
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@5712 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2017-01-27 10:38:53 +00:00

25 lines
627 B
ObjectPascal

{ This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install the package.
}
unit lazupdate;
{$warn 5023 off : no warning about unused units}
interface
uses
ulazautoupdate, aboutlazautoupdateunit, VersionSupport, uappisrunning,
lazautoupdate_httpclient, open_ssl, ushortcut, LazarusPackageIntf;
implementation
procedure Register;
begin
RegisterUnit('ulazautoupdate', @ulazautoupdate.Register);
RegisterUnit('aboutlazautoupdateunit', @aboutlazautoupdateunit.Register);
end;
initialization
RegisterPackage('lazupdate', @Register);
end.