home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.0 / NeXTSTEP3.0.iso / NextDeveloper / Headers / mach / msg_type.h < prev    next >
Text File  |  1992-07-29  |  1KB  |  41 lines

  1. /* 
  2.  * Mach Operating System
  3.  * Copyright (c) 1989 Carnegie-Mellon University
  4.  * Copyright (c) 1988 Carnegie-Mellon University
  5.  * Copyright (c) 1987 Carnegie-Mellon University
  6.  * All rights reserved.  The CMU software License Agreement specifies
  7.  * the terms and conditions for use and redistribution.
  8.  */
  9. /*
  10.  * HIST!2 * $Log:    msg_type.h,v $
  11.  * Revision 2.4  89/03/09  20:22:18  rpd
  12.  *     More cleanup.
  13.  * 
  14.  * Revision 2.3  89/02/25  18:39:26  gm0w
  15.  *     Changes for cleanup.
  16.  * 
  17.  *  4-Mar-87  Michael Young (mwyoung) at Carnegie-Mellon University
  18.  *    Added MSG_TYPE_RPC.
  19.  *
  20.  *  22-Dec-86 Mary Thompson
  21.  *    defined MSG_TYPE_CAMELOT, and MSG_TYPE_ENCRYPTED
  22.  *
  23.  */
  24. /*
  25.  *    This file defines user msg types that may be ored into
  26.  *    the msg_type field in a msg header. Values 0-5 are reserved
  27.  *    for use by the kernel and are defined in message.h. 
  28.  *
  29.  */
  30.  
  31. #ifndef    _MACH_MSG_TYPE_H_
  32. #define _MACH_MSG_TYPE_H_
  33.  
  34. #define MSG_TYPE_CAMELOT    (1 << 6)
  35. #define MSG_TYPE_ENCRYPTED    (1 << 7)
  36. #define MSG_TYPE_RPC        (1 << 8)    /* Reply expected */
  37.  
  38. #import <mach/message.h>
  39.  
  40. #endif    _MACH_MSG_TYPE_H_
  41.