home *** CD-ROM | disk | FTP | other *** search
/ BBS 1 / BBS#1.iso / maximus / fddev220.arj / C.ARJ / MODEM.H < prev    next >
C/C++ Source or Header  |  1993-06-28  |  1KB  |  42 lines

  1. /*
  2. **  modem.h
  3. **
  4. **  Structures for MODEM.FD
  5. **
  6. **  Copyright 1991-1993 Joaquim Homrighausen; All rights reserved.
  7. **
  8. **  Last revised: 93-06-21                         FrontDoor 2.11+
  9. **
  10. **  -------------------------------------------------------------------------
  11. **  This information is not necessarily final and is subject to change at any
  12. **  given time without further notice
  13. **  -------------------------------------------------------------------------
  14. */
  15. #ifndef __MODEM_H__
  16. #define __MODEM_H__
  17.  
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21.  
  22.     /* Miscellaneous flags (FLAGS) */
  23.  
  24. #define MODEM_MAXENTRY  256              /*Maximum number of entries in list*/
  25. #define MODEM_INACTIVE  0x0001                     /*Ignore string, inactive*/
  26. #define MODEM_DELETED   0x8000                       /*Never written to disk*/
  27.  
  28. typedef struct
  29.     {
  30.     char                matchstr[24],                      /*String to match*/
  31.                         sendstr[32];                        /*String to send*/
  32.     unsigned short int  flags;                                   /*See above*/
  33.     }
  34.     _MODEMREC;
  35.  
  36. #ifdef __cplusplus
  37. }
  38. #endif
  39. #endif
  40.  
  41. /* end of file "modem.h" */
  42.