14 lines
204 B
C
14 lines
204 B
C
#ifndef XPC_ENDPOINT_H_
|
|
#define XPC_ENDPOINT_H_
|
|
|
|
#include <mango/types.h>
|
|
|
|
typedef struct xpc_endpoint {
|
|
kern_handle_t e_channel;
|
|
tid_t e_task;
|
|
koid_t e_port;
|
|
msgid_t e_msg;
|
|
} xpc_endpoint_t;
|
|
|
|
#endif
|