home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / c-kermit / ckistu.c < prev    next >
C/C++ Source or Header  |  2020-01-01  |  3KB  |  86 lines

  1. /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
  2. /* |_o_o|\\ Copyright (c) 1986 The Software Distillery.  All Rights Reserved */
  3. /* |. o.| || This program may not be distributed without the permission of   */
  4. /* | .  | || the authors.                                                    */
  5. /* | o  | ||    Dave Baker     Ed Burnette  Stan Chow    Jay Denebeim        */
  6. /* |  . |//     Gordon Keener  Jack Rouse   John Toebes  Doug Walker         */
  7. /* ======          BBS:(919)-471-6436      VOICE:(919)-469-4210              */
  8. /*                                                                           */
  9. /* Contributed to Columbia University for inclusion in C-Kermit.             */
  10. /*
  11.   Permission is granted to any individual or institution to use this
  12.   software as long as it is not sold for profit.  This copyright notice must be
  13.   retained.  This software may not be included in commercial products without
  14.   written permission of Columbia University.
  15. */
  16. /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
  17.  
  18. /*  C K I S T U  --  Stubs for functions not yet implemented on Amiga */
  19.  
  20. #ifndef _lint
  21. static char *version = "Amiga stub routines, $Id: ckistu.c,v 1.6 1992/10/30 16:10:04 swalton Exp swalton $";
  22. #endif
  23.  
  24. /*
  25.  Author: Jack Rouse, The Software Distillery
  26.  
  27.  * $Log: ckistu.c,v $
  28.  * Revision 1.6  1992/10/30 16:10:04  swalton
  29.  * Change in the format of the copyright notice.  No code changes.
  30.  *
  31.  * Revision 1.5  92/01/15  17:14:59  swalton
  32.  * Use Id rather than Header in the RCS ID string.
  33.  *
  34.  * Revision 1.4  91/07/18  16:01:28  swalton
  35.  * Stub version of getdws() routine added (new for 5A(172)).
  36.  *
  37.  * Revision 1.3  91/05/29  09:08:42  swalton
  38.  * 1.  Changed function definitions to prototype style.  Required adding
  39.  *     a few forward declarations.
  40.  * 2.  Removed includes of stdio.h, stdlib.h, and string.h, as they are
  41.  *     now pulled in by ckcdeb.h, provided we compile with -DCK_ANSILIBS.
  42.  *
  43.  * Revision 1.2  90/11/07  14:41:45  swalton
  44.  * Version 1.2--released to world as first beta test version simultaneously
  45.  * with release of edit 5A(160).
  46.  *
  47.  * Revision 1.1  90/07/12  22:30:04  swalton
  48.  * Administrative check-in only;  no modifications were made to this modue
  49.  * for version 5A(149) of C Kermit.
  50.  *
  51.  * Revision 1.0  90/04/30  11:54:42  swalton
  52.  * Initial revision
  53.  *
  54. */
  55.  
  56. #include "ckcdeb.h"
  57. #include "ckcker.h"
  58. #include "ckucmd.h"
  59.  
  60. char *dialv = "Dial Command unimplemented";
  61. struct keytab mdmtab[] = {
  62.     "direct",     0,     0,    /* no modem control */
  63.     "generic",     1,     0    /* use 7 wire modem control */
  64. };
  65.  
  66. int nmdm = sizeof(mdmtab) / sizeof(struct keytab);
  67.  
  68. int
  69. ckdial(char *s) {
  70.     printf("Sorry, DIAL command not implemented yet.\n");
  71.     return(-2);
  72. }
  73.  
  74. char *loginv = "Script Command unimplemented";
  75.  
  76. int
  77. dologin(char *s) {
  78.     printf("Sorry, SCRIPT command not implemented yet\n");
  79.     return(-2);
  80. }
  81.  
  82. char *
  83. getdws(int mdmtyp) {
  84.     return NULL;
  85. }
  86.