home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 15 / 15.iso / s / s053 / 9.ddi / usr / include / sys / sysmsg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-12-08  |  717 b   |  28 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. #ident    "@(#)/usr/include/sys/sysmsg.h.sl 1.1 4.0 12/08/90 45716 AT&T-USL"
  11.  
  12. #define SMSGIOC        ('U' << 8)
  13. #define    SMSG_GETFLAGS    SMSGIOC | 200
  14. #define    SMSG_SETFLAGS    SMSGIOC | 201
  15.  
  16. struct smsg_flags
  17. {
  18.     int    static_cmf;
  19.     int    dynamic_cmf;
  20.     int    static_rcmf;
  21.     int    dynamic_rcmf;
  22.     int    acef;
  23.     int    rcef;
  24.     int    cmos_acef;
  25.     int    ac_baud;
  26.     int    rc_baud;
  27. };
  28.