home *** CD-ROM | disk | FTP | other *** search
- {------------------------------------------------------------}
- {- FlashPac Pascal Library (Print Unit) - V3.5 -}
- {- (c) Copyright 1986-1991 - All Rights Reserved -}
- {- SimpleSoft Inc -}
- {- 1209 Poplar St -}
- {- La Crescent, MN 55947 -}
- {------------------------------------------------------------}
-
- Unit FPPrt;
- Interface
- {$B-,F+}
- {$IFNDEF VER40}
- {D-}
- {$ENDIF}
-
- {--------------------------------------------------------------------}
-
- Function BiosPrtChar(Ch : Char; PrtNo : Integer) : Integer;
- Function BiosPrtInit(PrtNo : Integer) : Integer;
- Function BiosPrtStat(PrtNo : Integer) : Integer;
- Procedure DosPrtChar(Ch : Char);
-
- {--------------------------------------------------------------------}
-
- Implementation
-
- Const
- Copyright1 = 'FlashPac Pascal Library (Prt Unit) - V3.5';
- Copyright2 = '(c) Copyright 1986-1991 - All Rights Reserved';
- Copyright3 = 'SimpleSoft, Inc.';
- Copyright4 = '1209 Poplar St';
- Copyright5 = 'La Crescent, MN 55947';
-
- {$L prt\BPrtChar}
- {$L prt\BPrtInit}
- {$L prt\BPrtStat}
- {$L prt\DPrtChar}
-
- {--------------------------------------------------------------------}
-
- Function BiosPrtChar; External;
- Function BiosPrtInit; External;
- Function BiosPrtStat; External;
- Procedure DosPrtChar; External;
-
- {--------------------------------------------------------------------}
-
- Begin
- end.
-