printerh.inc 823 B

123456789101112131415161718192021222324252627282930
  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.2 2005-02-14 17:13:26 peter
  21. * truncate log
  22. }