mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-01 09:25:05 +02:00
23 lines
456 B
ObjectPascal
23 lines
456 B
ObjectPascal
{ This file was automatically created by Lazarus. Do not edit!
|
|
This source is only used to compile and install the package.
|
|
}
|
|
|
|
unit lazdbexport;
|
|
|
|
interface
|
|
|
|
uses
|
|
regdbexport, fpdataexporter, frmSelectExportFormat, frmexportprogress,
|
|
frmBaseConfigExport, LazarusPackageIntf;
|
|
|
|
implementation
|
|
|
|
procedure Register;
|
|
begin
|
|
RegisterUnit('regdbexport', @regdbexport.Register);
|
|
end;
|
|
|
|
initialization
|
|
RegisterPackage('lazdbexport', @Register);
|
|
end.
|