home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ftp.wwiv.com
/
ftp.wwiv.com.zip
/
ftp.wwiv.com
/
pub
/
PROTOCOL
/
TPHYD100.ZIP
/
H_COMMS.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1993-08-18
|
2KB
|
39 lines
{$A+,B-,D-,E-,F-,I-,L-,N-,O+,R-,S-,V-}
(******************************************************************************)
(* Hydra Bi-directional Protocol *)
(* ───────────────────────── *)
(* *)
(* Com Port Handler *)
(* *)
(* BY: Adam Blake Wandoo Valley Software *)
(* Arjen Lentz and Lentz Software *)
(* VER: 1.00 Development *)
(* DATE: 5th August 1993 (c) Copyright 1993 *)
(* LANGUAGE: Turbo Pascal v6.0 All Rights Reserved Worldwide *)
(******************************************************************************)
Unit h_Comms;
Interface
var
Com_TxFlush : Procedure;
Com_RxFlush : Procedure;
Com_TxEmpty : Function : boolean;
Com_RxReady : Function : boolean;
Com_Carrier : Function : boolean;
Com_Break : Procedure;
Com_TxByte : Procedure( Ch : byte );
Com_TxBlock : Procedure( var Buffer; Len : word );
Com_RxByte : Function : byte;
Com_TXChars : ^word; (*Points to a variable of type word which contains the*)
(*number of characters contained in the output buffer *)
(******************************************************************************)
Implementation
(**********************************MAINLINE************************************)
end.