home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: OtherApp / OtherApp.zip / am4pm08f.zip / init.amc < prev    next >
Text File  |  1993-07-10  |  1KB  |  22 lines

  1. /*********************************************************************/
  2. /* INIT.AMC - Initialize the modem                                   */
  3. /*                                                                   */
  4. /* This program is called by AM4PM.EXE.                              */
  5. /*                                                                   */
  6. /* Input:  none                                                      */
  7. /* Input:  arg(2) Number of rings so far                             */
  8. /*                                                                   */
  9. /* Output: 0  Normal.                                                */
  10. /*         1  Initialisation failed. Terminate AM4PM                 */
  11. /*                                                                   */
  12. /*********************************************************************/
  13.  
  14. CALL RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
  15. CALL SysLoadFuncs
  16.  
  17. AMSendW('ATZ')
  18. AMSendW('ATE0')
  19. AMSendW('AT+FCLASS=8')
  20.  
  21. Exit 0
  22.