lazarus/components/printers/printer4lazarus.pas
vincents 428ae2d60f printers: fixed compilation on windows.
git-svn-id: trunk@19413 -
2009-04-13 18:01:32 +00:00

22 lines
396 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;
interface
uses
PrintersDlgs, OSPrinters, LazarusPackageIntf;
implementation
procedure Register;
begin
RegisterUnit('PrintersDlgs', @PrintersDlgs.Register);
end;
initialization
RegisterPackage('Printer4Lazarus', @Register);
end.