mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-11-19 01:09:27 +01:00
57 lines
1.8 KiB
ObjectPascal
57 lines
1.8 KiB
ObjectPascal
{
|
|
***************************************************************************
|
|
osprinters.pas
|
|
------------
|
|
Printer object
|
|
Initial Revision : 09 Mars 2005
|
|
|
|
***************************************************************************
|
|
|
|
*****************************************************************************
|
|
* *
|
|
* This file is part of the Lazarus Component Library (LCL) *
|
|
* *
|
|
* See the file COPYING.LCL, included in this distribution, *
|
|
* for details about the copyright. *
|
|
* *
|
|
* This program is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
|
|
* *
|
|
*****************************************************************************
|
|
|
|
Author: Olivier
|
|
|
|
Abstract :
|
|
Unit to centralize the implementation of Printer according to the target OS
|
|
|
|
history
|
|
09/03/2005 OG - Create
|
|
-----------------------------------------------------------------------------}
|
|
unit OSPrinters;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
{$IFDEF LINUX}
|
|
{$I ./linux/cupsprinters_h.inc}
|
|
{$ENDIF}
|
|
|
|
{$IFDEF WIN32}
|
|
{$I ./win32/winprinters_h.inc}
|
|
{$ENDIF}
|
|
|
|
implementation
|
|
|
|
{$IFDEF LINUX}
|
|
{$I ./linux/cupsprinters.inc}
|
|
{$ENDIF}
|
|
|
|
{$IFDEF WIN32}
|
|
{$I ./win32/winprinters.inc}
|
|
{$ENDIF}
|
|
|
|
end.
|
|
|