2008-10-06 15:02:30 +00:00
|
|
|
{ This file was automatically created by Lazarus. Do not edit!
|
2016-07-14 23:38:24 +00:00
|
|
|
This source is only used to compile and install the package.
|
2008-10-06 15:02:30 +00:00
|
|
|
}
|
|
|
|
|
2016-07-14 23:38:24 +00:00
|
|
|
unit pack_powerpdf;
|
2008-10-06 15:02:30 +00:00
|
|
|
|
2016-07-14 23:38:24 +00:00
|
|
|
{$warn 5023 off : no warning about unused units}
|
2008-10-06 15:02:30 +00:00
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
|
|
|
PdfTypes, PdfDoc, PdfJpCMap, PdfJPFonts, PdfGBFonts, PdfFonts, PdfImages,
|
2016-07-14 23:38:24 +00:00
|
|
|
PReport, PdfJpegImage, PRJpegImage, PRAnnotation, PowerPdf,
|
2020-08-14 13:39:02 +00:00
|
|
|
PdfImageLazTools, LazarusPackageIntf;
|
2008-10-06 15:02:30 +00:00
|
|
|
|
|
|
|
implementation
|
|
|
|
|
2016-07-14 23:38:24 +00:00
|
|
|
procedure Register;
|
2008-10-06 15:02:30 +00:00
|
|
|
begin
|
2016-07-14 23:38:24 +00:00
|
|
|
RegisterUnit('PowerPdf', @PowerPdf.Register);
|
|
|
|
end;
|
2008-10-06 15:02:30 +00:00
|
|
|
|
|
|
|
initialization
|
2016-07-14 23:38:24 +00:00
|
|
|
RegisterPackage('pack_powerpdf', @Register);
|
2008-10-06 15:02:30 +00:00
|
|
|
end.
|