home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / k95source / ckntel.h < prev    next >
C/C++ Source or Header  |  2020-01-01  |  1KB  |  31 lines

  1. /* C K N T E L  --  Kermit Telephony interface for MS Win32 TAPI systems */
  2.  
  3. /*
  4.   Author: Jeffrey E Altman (jaltman@secure-endpoints.com),
  5.           Secure Endpoints Inc., New York City.
  6.  
  7.   Copyright (C) 1985, 2004, Trustees of Columbia University in the City of New
  8.   York.  The C-Kermit software may not be, in whole or in part, licensed or
  9.   sold for profit as a software product itself, nor may it be included in or
  10.   distributed with commercial products or otherwise distributed by commercial
  11.   concerns to their clients or customers without written permission of the
  12.   Office of Kermit Development and Distribution, Columbia University.  This
  13.   copyright notice must not be removed, altered, or obscured.
  14. */
  15.  
  16. #ifndef COMMENT
  17. #define CK_TAPI
  18. #endif
  19.  
  20. _PROTOTYP( int cktapiinit, (void) ) ;
  21. _PROTOTYP( int cktapiopen, (void) ) ;
  22. _PROTOTYP( int cktapiclose, (void) ) ;
  23. _PROTOTYP( int cktapiload, (void) ) ;
  24. _PROTOTYP( int cktapiunload, (void) ) ;
  25. _PROTOTYP( int cktapidial, (char *) ) ;
  26. _PROTOTYP( int cktapiBuildLineTable, (struct keytab **, int *) ) ;
  27. _PROTOTYP( int cktapiBuildLocationTable, (struct keytab **, int *) ) ;
  28.  
  29. #define SUCCESS 0
  30. extern int TAPIAvail ;
  31.