home *** CD-ROM | disk | FTP | other *** search
- *[FOSSIL12.LIT]***************************************************************
- * Description: Removes support for FOSSIL *
- * RBBS-PC Level: CPC17.3 √ AM *
- * Module Affected: RBBSSUB1.BAS *
- * Selection Option: FOSSIL = OFF *
- * Additional files: FOSSIL11.LIT,FOSSIL13.LIT *
- ******************************************************************************
- 20308 ' $SUBTITLE: 'FlushCom -- subroutine reads all char. from comm. port'
- ' $PAGE
- '
- ' NAME -- FlushCom
- '
- ' INPUTS -- PARAMETER MEANING
- ' STrng$ STRING TO READ CHARACTERS INTO FROM
- ' THE COMMUNICATIONS PORT (FILE #3)
- '
- ' OUTPUTS -- Strng$
- '
- ' PURPOSE -- Reads all characters from the communications port.
- '
- SUB FlushCom (Strng$) STATIC
- ON ERROR GOTO 65000
- IF ZLocalUser THEN _
- EXIT SUB
- Strng$ = ""
- 20310
-
-