home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 3 Comm / 03-Comm.zip / ck190b.zip / P101.INI < prev    next >
Text File  |  1994-08-20  |  1KB  |  32 lines

  1. ; FILE CKOP101.INI - Macros for invoking P version 1.01 from OS/2 C-Kermit.
  2. ;
  3. ; Jeffrey Altman, Altmania Productions and Seer Technologies
  4. ;  <p00118@psilink.com>
  5. ;  August 1994
  6. ;
  7. ; P is an external protocol package providing X-modem, Y-modem, Y-modem-G
  8. ; and Z-modem send and receive capabilities on OS/2 via Serial connections.
  9. ;
  10. ; The P protocol dynamic link library is freeware available from most major
  11. ; ftp sites, bulletin board services and CompuServe.  It is suggested that
  12. ; you update to version 2.00.
  13. ;
  14. ; Commands:
  15. ;    sz/rz - send/receive with Zmodem
  16. ;    sy/ry - send/receive with Ymodem
  17. ;    sg/rg - send/receive with Ymodem-G
  18. ;    sx/rx - send/receive with Xmodem
  19.  
  20. echo Initializing X,Y,YG,Z-modem support using P version 1.01....
  21.  
  22. define sz !p \v(ttyfd) \v(speed) -b9024 -f -k sz \%1
  23. define sg !p \v(ttyfd) \v(speed) -b9024 -f -k sg \%1
  24. define sy !p \v(ttyfd) \v(speed) -b9024 -f -k sy \%1
  25. define sx !p \v(ttyfd) \v(speed) -b9024 -F -m sx \%1
  26.  
  27. define rz !p \v(ttyfd) \v(speed) -b9024 -f -F -k -r rz \%1
  28. define rg !p \v(ttyfd) \v(speed) -b9024 -f -k rg \%1
  29. define ry !p \v(ttyfd) \v(speed) -b9024 -f -k ry \%1
  30. define rx !p \v(ttyfd) \v(speed) -b9024 -F -m rx \%1
  31.  
  32.