home *** CD-ROM | disk | FTP | other *** search
/ 17 Bit Software 3: The Continuation / 17-Bit_The_Continuation_Disc.iso / amigan / amigan 3 / amiga / ckistu.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-01-27  |  951 b   |  38 lines

  1. /*  C K I S T U  --  Stubs for functions not yet implemented on Amiga */
  2.  
  3. /*
  4.  Author: Jack Rouse
  5.  Contributed to Columbia University for inclusion in C-Kermit.
  6.  Copyright (C) 1986, Jack J. Rouse, 106 Rubin Ct. Apt. A-4, Cary NC 27511
  7.  Permission is granted to any individual or institution to use, copy, or
  8.  redistribute this software so long as it is not sold for profit, provided this
  9.  copyright notice is retained. 
  10. */
  11.  
  12. #include "ckcdeb.h"
  13. #include <stdio.h>
  14. #include <ctype.h>
  15. #include "ckcker.h"
  16. #include "ckucmd.h"
  17.  
  18. char *dialv = "Dial Command unimplemented";
  19. struct keytab mdmtab[] = {
  20.     "direct",     0,     0,    /* no modem control */
  21.     "generic",     1,     0    /* use 7 wire modem control */
  22. };
  23.  
  24. int nmdm = sizeof(mdmtab) / sizeof(struct keytab);
  25.  
  26. dial()
  27. {
  28.     printf("Sorry, DIAL command not implemented yet.\n");
  29.     return(-2);
  30. }
  31.  
  32. char *loginv = "Script Command unimplemented";
  33. login()
  34. {
  35.     printf("Sorry, SCRIPT command not implemented yet\n");
  36.     return(-2);
  37. }
  38.