home *** CD-ROM | disk | FTP | other *** search
/ Amiga Elysian Archive / AmigaElysianArchive.iso / prog / utils / sercli.shr / sercli / src / keywords.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-06-16  |  1.2 KB  |  65 lines

  1. /*
  2. **  $Source: WB_2.1:homes/rkr/prog/sercli/src/RCS/keywords.h,v $
  3. **  $Author: rkr $
  4. **  $Revision: 1.5 $
  5. **  $Locker: rkr $
  6. **  $State: Exp $
  7. **  $Date: 1993/06/16 23:31:39 $
  8. **
  9. **  sercli (an Amiga .device <-> FIFO interface tool)
  10. **  Copyright (C) 1993  Richard Rauch
  11. **
  12. **  See /doc/sercli.doc and /COPYING for use and distribution license.
  13. **
  14. */
  15.  
  16. #ifndef KEYWORDS_H
  17.  
  18. /*
  19. **  This is a list of symbols corresponding to the keywords that sercli
  20. **  responds to.  (This should pro'ly be generated from a table in a single
  21. **  spot, since the relationship of these compile-time symbols to string
  22. **  data is maintained in a seperate file (keywords.c), and errors can
  23. **  pro'ly slip in easily with the current method...)
  24. **
  25. */
  26.  
  27. enum keywords
  28. {
  29.     ID_STRING = FIRST_OPTION_ID,
  30.  
  31.     DEVICE_NAME,
  32.     DEVICE_UNIT,
  33.  
  34.     SER_BPS,
  35.     SER_BITS,
  36.     SER_STOP_BITS,
  37.     SER_7WIRE,
  38.     SER_3WIRE,
  39.     SER_XON_XOFF,
  40.     SER_NO_XON_XOFF,
  41.     SER_SHARED,
  42.     SER_EXCLUSIVE,
  43.     SER_NO_RAD_BOOGIE,
  44.     SER_RAD_BOOGIE,
  45.     SER_NO_PARITY,
  46.     SER_ODD_PARITY,
  47.     SER_EVEN_PARITY,
  48.     SET_WINDOW_TITLE,
  49.     SET_WINDOW_SIZE,
  50.  
  51.     ALERT_SER,
  52.     ALERT_LOC,
  53.     NO_ALERT_SER,
  54.     NO_ALERT_LOC,
  55.  
  56.     SER_QUERY,
  57.  
  58. };
  59.  
  60. extern option keywords [];
  61.  
  62.  
  63. #endif /*** KEYWORDS_H ***/
  64.  
  65.