/components/printers/design/printers4lazide.pas
http://github.com/graemeg/lazarus · Pascal · 22 lines · 12 code · 6 blank · 4 comment · 0 complexity · 8463ae8ce78d7eab621b41397418d52c MD5 · raw file
- { This file was automatically created by Lazarus. Do not edit!
- This source is only used to compile and install the package.
- }
- unit printers4lazide;
- {$warn 5023 off : no warning about unused units}
- interface
- uses
- ideprinting, SourcePrinter, LazarusPackageIntf;
- implementation
- procedure Register;
- begin
- RegisterUnit('ideprinting', @ideprinting.Register);
- end;
- initialization
- RegisterPackage('printers4lazide', @Register);
- end.