printerh.inc 868 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. $Id$
  3. This file is part of the Free Pascal run time library.
  4. Copyright (c) 1999-2004 by the Free Pascal development team
  5. Common header for unit Printer.
  6. See the file COPYING.FPC, included in this distribution,
  7. for details about the copyright.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. **********************************************************************}
  12. var
  13. Lst: text;
  14. (* Check whether opening of Lst was successful. *)
  15. function IsLstAvailable: boolean;
  16. (* Allow to initialize printer with different name. *)
  17. procedure InitPrinter (const PrinterName: string);
  18. {
  19. $Log$
  20. Revision 1.1 2004-12-05 11:21:46 hajny
  21. * common implementation of unit printer - fix for bug 3421
  22. }