lazarus/components/printers/printer4lazarus.pas

23 lines
461 B
ObjectPascal

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