home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / amiga / os / kludge03.tz / kludge03 / mk74 / user / libmach / bootstrap.h < prev    next >
C/C++ Source or Header  |  1992-08-27  |  798b  |  40 lines

  1. #ifndef    _bootstrap_user_
  2. #define    _bootstrap_user_
  3.  
  4. /* Module bootstrap */
  5.  
  6. #include <mach/kern_return.h>
  7. #if    (defined(__STDC__) || defined(c_plusplus)) || defined(LINTLIBRARY)
  8. #include <mach/port.h>
  9. #include <mach/message.h>
  10. #endif
  11.  
  12. #include <mach/std_types.h>
  13.  
  14. /* Routine bootstrap_privileged_ports */
  15. #ifdef    mig_external
  16. mig_external
  17. #else
  18. extern
  19. #endif
  20. kern_return_t bootstrap_privileged_ports
  21. #if    defined(LINTLIBRARY)
  22.     (bootstrap, priv_host, priv_device)
  23.     mach_port_t bootstrap;
  24.     mach_port_t *priv_host;
  25.     mach_port_t *priv_device;
  26. { return bootstrap_privileged_ports(bootstrap, priv_host, priv_device); }
  27. #else
  28. #if    (defined(__STDC__) || defined(c_plusplus))
  29. (
  30.     mach_port_t bootstrap,
  31.     mach_port_t *priv_host,
  32.     mach_port_t *priv_device
  33. );
  34. #else
  35.     ();
  36. #endif
  37. #endif
  38.  
  39. #endif    _bootstrap_user_
  40.