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

  1. /* 
  2.  * Mach Operating System
  3.  * Copyright (c) 1989 Carnegie-Mellon University
  4.  * Copyright (!2%988 Carnegie-Mellon University
  5.  * All rights reserved.  The CMU software License Agreement specifies
  6.  * the terms and conditions for use and redistribution.
  7.  */
  8. /*
  9.  * HISTORY
  10.  * $Log:    std_types.h,v $
  11.  * 21-Mar-90  Gregg Kellogg (gk) at NeXT
  12.  *    Changed #import to #include except for boolean.h.  This needs
  13.  *    to be an include so that TRUE and FALSE will be defined after
  14.  *    we define EXPORT_BOOLEAN.  Otherwise, if boolean was included
  15.  *    before this file we would never see the definitions.
  16.  *
  17.  * Revision 2.4  89/03/09  20:23:16  rpd
  18.  *     More cleanup.
  19.  * 
  20.  * Revision 2.3  89/02/25  18:40:23  gm0w
  21.  *     Changes for cleanup.
  22.  * 
  23.  * Revision 2.2  89/01/15  16:31:59  rpd
  24.  *     Moved from kern/ to mach/.
  25.  *     [89/01/15  14:34:14  rpd]
  26.  * 
  27.  * Revision 2.2  89/01/12  07:59:07  rpd
  28.  *     Created.
  29.  *     [89/01/12  04:15:40  rpd]
  30.  * 
  31.  */
  32. /*
  33.  *    Mach standard external interface type definitions.
  34.  *
  35.  */
  36.  
  37. #ifndef    _MACH_STD_TYPES_H_
  38. #define _MACH_STD_TYPES_H_
  39.  
  40. #define EXPORT_BOOLEAN
  41.  
  42. #import <mach/boolean.h>
  43. #import <mach/kern_return.h>
  44. #import <mach/port.h>
  45. #import <mach/machine/vm_types.h>
  46.  
  47. typedef    vm_offset_t    pointer_t;
  48.  
  49. #endif    _MACH_STD_TYPES_H_
  50.