home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 15 / 15.iso / s / s053 / 9.ddi / usr / include / sys / ttydev.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-12-08  |  1.2 KB  |  62 lines

  1. /*    Copyright (c) 1990 UNIX System Laboratories, Inc.    */
  2. /*    Copyright (c) 1984, 1986, 1987, 1988, 1989, 1990 AT&T    */
  3. /*      All Rights Reserved      */
  4.  
  5. /*    THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF         */
  6. /*    UNIX System Laboratories, Inc.                         */
  7. /*    The copyright notice above does not evidence any       */
  8. /*    actual or intended publication of such source code.    */
  9.  
  10. #ifndef _SYS_TTYDEV_H
  11. #define _SYS_TTYDEV_H
  12.  
  13. #ident    "@(#)/usr/include/sys/ttydev.h.sl 1.1 4.0 12/08/90 34858 AT&T-USL"
  14.  
  15. /*    @(#)ttydev.h 2.6 88/02/08 SMI; from UCB 4.3 83/05/18    */
  16.  
  17. /*
  18.  * Terminal definitions related to underlying hardware.
  19.  */
  20.  
  21. /*
  22.  * Speeds
  23.  */
  24. #define B0    0
  25. #define B50    1
  26. #define B75    2
  27. #define B110    3
  28. #define B134    4
  29. #define B150    5
  30. #define B200    6
  31. #define B300    7
  32. #define B600    8
  33. #define B1200    9
  34. #define    B1800    10
  35. #define B2400    11
  36. #define B4800    12
  37. #define B9600    13
  38. #define B19200    14
  39. #define B38400    15
  40. #define EXTA    14
  41. #define EXTB    15
  42.  
  43. #if 0
  44. /*
  45.  * Hardware bits.
  46.  * SHOULD NOT BE HERE.
  47.  */
  48. #define    DONE    0200
  49. #define    IENABLE    0100
  50.  
  51. /*
  52.  * Modem control commands.
  53.  */
  54. #define    DMSET        0
  55. #define    DMBIS        1
  56. #define    DMBIC        2
  57. #define    DMGET        3
  58.  
  59. #endif /* end if 0 comment */
  60.  
  61. #endif /*_SYS_TTYDEV_H */
  62.