rtl-extra: add printer unit for atari

This commit is contained in:
Thorsten Otto 2022-02-06 18:15:34 +01:00 committed by Charlie Balogh
parent a79aa87272
commit b4cc4f851b
2 changed files with 30 additions and 1 deletions

View File

@ -19,7 +19,7 @@ Const
IPCBSDs = [FreeBSD,NetBSD,OpenBSD,DragonFly];
// IPCcdeclOSes = [Darwin,iphonesim,ios];
PrinterOSes = [go32v2,msdos,os2,win32,win64]+unixlikes-[beos,haiku,morphos];
PrinterOSes = [go32v2,msdos,os2,win32,win64,atari]+unixlikes-[beos,haiku,morphos];
SerialOSes = [android,linux,netbsd,openbsd,win32,win64];
UComplexOSes = [atari,embedded,emx,gba,go32v2,msdos,nativent,nds,netware,netwlibc,os2,sinclairql,symbian,watcom,wii,wince,win32,win64,freertos,wasi]+UnixLikes+AllAmigaLikeOSes;
MatrixOSes = [atari,embedded,emx,gba,go32v2,msdos,nativent,nds,netware,netwlibc,os2,sinclairql,symbian,watcom,wii,win32,win64,wince,freertos,wasi]+UnixLikes+AllAmigaLikeOSes;

View File

@ -0,0 +1,29 @@
{
This file is part of the Free Pascal run time library.
Copyright (c) 1999-2000 by Florian Klaempfl
member of the Free Pascal development team
Printer unit for BP7/PurePascal compatible RTL
See the file COPYING.FPC, 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.
**********************************************************************}
unit printer;
interface
{$I printerh.inc}
implementation
{$I printer.inc}
begin
(* WARNING: has to be checked; do_open('PRN') returns a valid, negative OS handle *)
InitPrinter ('PRN');
SetPrinterExit;
end.