; FILE P101.INI (CKOP101.INI) ; Macros for invoking P version 1.01 from OS/2 C-Kermit. ; ; Jeffrey Altman, Altmania Productions and Seer Technologies ; ; August 1994 ; ; P is an external protocol package providing X-modem, Y-modem, Y-modem-G ; and Z-modem send and receive capabilities on OS/2 via Serial connections, ; written by Jyrki Salmi . ; ; The P protocol dynamic link library is freeware available from most major ; ftp sites, bulletin board services and CompuServe. It is suggested that ; you update to version 2.00. ; ; Commands: ; sz/rz - send/receive with Zmodem ; sy/ry - send/receive with Ymodem ; sg/rg - send/receive with Ymodem-G ; sx/rx - send/receive with Xmodem ; ; DISCLAIMER: ; These macro definitions are included with C-Kermit as a convenience ; to users of P 1.01. Columbia University is not a source for the P ; software, nor does it support P in any way. ; echo Initializing X,Y,YG,Z-modem support using P version 1.01.... define sz !p \v(ttyfd) \v(speed) -b9024 -f -k sz \%1 define sg !p \v(ttyfd) \v(speed) -b9024 -f -k sg \%1 define sy !p \v(ttyfd) \v(speed) -b9024 -f -k sy \%1 define sx !p \v(ttyfd) \v(speed) -b9024 -F -m sx \%1 define rz !p \v(ttyfd) \v(speed) -b9024 -f -F -k -r rz \%1 define rg !p \v(ttyfd) \v(speed) -b9024 -f -k rg \%1 define ry !p \v(ttyfd) \v(speed) -b9024 -f -k ry \%1 define rx !p \v(ttyfd) \v(speed) -b9024 -F -m rx \%1