lazarus/components/printers/osprinters.pas
mattias bd67e88e88 started porting cups support to macosx
git-svn-id: trunk@8604 -
2006-01-23 10:42:43 +00:00

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 UNIX}
{$I ./unix/cupsprinters_h.inc}
{$ENDIF}
{$IFDEF WIN32}
{$I ./win32/winprinters_h.inc}
{$ENDIF}
implementation
{$IFDEF UNIX}
{$I ./unix/cupsprinters.inc}
{$ENDIF}
{$IFDEF WIN32}
{$I ./win32/winprinters.inc}
{$ENDIF}
end.