mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 22:07:56 +02:00
rtl-extra: add printer unit for atari
This commit is contained in:
parent
a79aa87272
commit
b4cc4f851b
@ -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;
|
||||
|
29
packages/rtl-extra/src/atari/printer.pp
Normal file
29
packages/rtl-extra/src/atari/printer.pp
Normal 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.
|
Loading…
Reference in New Issue
Block a user