home *** CD-ROM | disk | FTP | other *** search
- ;
- ; Copyright (c) 1995
- ; by CompuServe Incorporated, Columbus, Ohio
- ;
- ; The information in this software is subject to change without
- ; notice and should not be construed as a commitment by CompuServe.
- ;
- ; DATAPAC for WIN95:
- ; Connect to DataPac
- ; Success: returns %Success
- ; Failure: saves error msg in %FailureMsg and returns %Failure
- ;
- ;+V
- ; "1.0.0"
- ;-V
-
- proc main
- set port databits 7
- set port parity even
- transmit "..."
- transmit "^M"
- waitfor "DataPac"
- transmit "29400138"
- transmit "^M"
- waitfor "Host Name:"
- transmit $USERID
- transmit "^M"
- waitfor "Password: "
- transmit $PASSWORD
- transmit "^M"
- set port databits 8
- set port parity none
-
- endproc