home *** CD-ROM | disk | FTP | other *** search
/ CD Shareware Magazine 1996 December / CD_shareware_12-96.iso / DOS / Programa / AGSPC1B2.ZIP / SYNCHRO.PPS < prev    next >
Encoding:
Text File  |  1996-07-30  |  671 b   |  22 lines

  1. ;----------------------------------------------------------------------------
  2. ; Copyright(C) 1996, The AEGiS Corporation
  3. ;----------------------------------------------------------------------------
  4. ;
  5. ; PROCEDURE Synchro()
  6. ;
  7. ; Synchronizes the PPE with the remote user. This procedures wait for all
  8. ; data to be sent to modem, this means 2400 bps users will not have modem
  9. ; buffer overflows.
  10. ;
  11. ;----------------------------------------------------------------------------
  12. #lib
  13. Declare Procedure Synchro()
  14.  
  15. ;----------------------------------------------------------------------------
  16. Procedure Synchro()
  17.  
  18. While (OutBytes() > 1) Do
  19. EndWhile
  20.  
  21. EndProc
  22.