mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-17 01:49:25 +02:00
printers4lazide: added sourceprinter.pas
git-svn-id: trunk@36710 -
This commit is contained in:
parent
4cd477be7c
commit
d052d54817
@ -19,12 +19,16 @@
|
|||||||
<CompilerPath Value="$(CompPath)"/>
|
<CompilerPath Value="$(CompPath)"/>
|
||||||
</Other>
|
</Other>
|
||||||
</CompilerOptions>
|
</CompilerOptions>
|
||||||
<Files Count="1">
|
<Files Count="2">
|
||||||
<Item1>
|
<Item1>
|
||||||
<Filename Value="ideprinting.pas"/>
|
<Filename Value="ideprinting.pas"/>
|
||||||
<HasRegisterProc Value="True"/>
|
<HasRegisterProc Value="True"/>
|
||||||
<UnitName Value="ideprinting"/>
|
<UnitName Value="ideprinting"/>
|
||||||
</Item1>
|
</Item1>
|
||||||
|
<Item2>
|
||||||
|
<Filename Value="sourceprinter.pas"/>
|
||||||
|
<UnitName Value="SourcePrinter"/>
|
||||||
|
</Item2>
|
||||||
</Files>
|
</Files>
|
||||||
<i18n>
|
<i18n>
|
||||||
<EnableI18N Value="True"/>
|
<EnableI18N Value="True"/>
|
||||||
|
@ -1,21 +1,21 @@
|
|||||||
{ This file was automatically created by Lazarus. Do not edit!
|
{ This file was automatically created by Lazarus. Do not edit!
|
||||||
This source is only used to compile and install the package.
|
This source is only used to compile and install the package.
|
||||||
}
|
}
|
||||||
|
|
||||||
unit printers4lazide;
|
unit printers4lazide;
|
||||||
|
|
||||||
interface
|
interface
|
||||||
|
|
||||||
uses
|
uses
|
||||||
ideprinting, LazarusPackageIntf;
|
ideprinting, SourcePrinter, LazarusPackageIntf;
|
||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
|
||||||
procedure Register;
|
procedure Register;
|
||||||
begin
|
begin
|
||||||
RegisterUnit('ideprinting', @ideprinting.Register);
|
RegisterUnit('ideprinting', @ideprinting.Register);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
initialization
|
initialization
|
||||||
RegisterPackage('printers4lazide', @Register);
|
RegisterPackage('printers4lazide', @Register);
|
||||||
end.
|
end.
|
||||||
|
Loading…
Reference in New Issue
Block a user