printer.pas 903 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. $Id$
  3. This file is part of the Free Pascal run time library.
  4. Copyright (c) 1999-2000 by Florian Klaempfl
  5. member of the Free Pascal development team
  6. Printer unit for BP7 compatible RTL
  7. See the file COPYING.FPC, included in this distribution,
  8. for details about the copyright.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  12. **********************************************************************}
  13. unit printer;
  14. interface
  15. {$I printerh.inc}
  16. implementation
  17. {$I printer.inc}
  18. begin
  19. InitPrinter ('PRN');
  20. SetPrinterExit;
  21. end.
  22. {
  23. $Log$
  24. Revision 1.3 2004-12-05 11:21:46 hajny
  25. * common implementation of unit printer - fix for bug 3421
  26. Revision 1.2 2002/09/07 16:01:25 peter
  27. * old logs removed and tabs fixed
  28. }