printers4lazide: added sourceprinter.pas

git-svn-id: trunk@36710 -
This commit is contained in:
mattias 2012-04-10 12:08:24 +00:00
parent 4cd477be7c
commit d052d54817
2 changed files with 12 additions and 8 deletions

View File

@ -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"/>

View File

@ -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.