home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.2 (Developer) / NS_dev_3.2.iso / NextDeveloper / Headers / mach / msg_type.h < prev    next >
Text File  |  1993-10-19  |  1KB  |  42 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.  * HISTORY
  11.  * $Log:    msg_type.h,v $
  12.  * Revision 2.4  89/03/09  20:22:18  rpd
  13.  *     More cleanup.
  14.  * 
  15.  * Revision 2.3  89/02/25  18:39:26  gm0w
  16.  *     Changes for cleanup.
  17.  * 
  18.  *  4-Mar-87  Michael Young (mwyoung) at Carnegie-Mellon University
  19.  *    Added MSG_TYPE_RPC.
  20.  *
  21.  *  22-Dec-86 Mary Thompson
  22.  *    defined MSG_TYPE_CAMELOT, and MSG_TYPE_ENCRYPTED
  23.  *
  24.  */
  25. /*
  26.  *    This file defines user msg types that may be ored into
  27.  *    the msg_type field in a msg header. Values 0-5 are reserved
  28.  *    for use by the kernel and are defined in message.h. 
  29.  *
  30.  */
  31.  
  32. #ifndef    _MACH_MSG_TYPE_H_
  33. #define _MACH_MSG_TYPE_H_
  34.  
  35. #define MSG_TYPE_CAMELOT    (1 << 6)
  36. #define MSG_TYPE_ENCRYPTED    (1 << 7)
  37. #define MSG_TYPE_RPC        (1 << 8)    /* Reply expected */
  38.  
  39. #import <mach/message.h>
  40.  
  41. #endif    _MACH_MSG_TYPE_H_
  42.