lazarus/components/sqlite/sqlite3laz.pas
mattias be5601fd37 components: less hints
git-svn-id: trunk@51781 -
2016-03-01 15:24:22 +00:00

23 lines
427 B
ObjectPascal

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