home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 019.lha / Aterm / options.h < prev    next >
C/C++ Source or Header  |  1986-11-10  |  329b  |  19 lines

  1. /* Options.h - declarations for Options */
  2.  
  3. #define MODEHALF  0
  4. #define MODEFULL  1
  5. #define MODEECHO  2
  6. #define XMODEM    0
  7. #define XMODEMCRC 1
  8. #define KERMIT    2
  9.  
  10. struct options
  11.   {
  12.     short Baud;
  13.     short Mode; /* 0 = Half, 1 = Full, 2 = Echo */
  14.     short AutoChop;
  15.     short Xon;
  16.     short Protocol;
  17.     UBYTE Prompt;
  18.   };
  19.