home *** CD-ROM | disk | FTP | other *** search
- ;----------------------------------------------------------------------------
- ; Copyright(C) 1996, The AEGiS Corporation
- ;----------------------------------------------------------------------------
- ;
- ; PROCEDURE Synchro()
- ;
- ; Synchronizes the PPE with the remote user. This procedures wait for all
- ; data to be sent to modem, this means 2400 bps users will not have modem
- ; buffer overflows.
- ;
- ;----------------------------------------------------------------------------
- #lib
- Declare Procedure Synchro()
-
- ;----------------------------------------------------------------------------
- Procedure Synchro()
-
- While (OutBytes() > 1) Do
- EndWhile
-
- EndProc
-