1 | #ifndef _coalition_notification_user_ |
2 | #define _coalition_notification_user_ |
3 | |
4 | /* Module coalition_notification */ |
5 | |
6 | #include <string.h> |
7 | #include <mach/ndr.h> |
8 | #include <mach/boolean.h> |
9 | #include <mach/kern_return.h> |
10 | #include <mach/notify.h> |
11 | #include <mach/mach_types.h> |
12 | #include <mach/message.h> |
13 | #include <mach/mig_errors.h> |
14 | #include <mach/port.h> |
15 | |
16 | /* BEGIN MIG_STRNCPY_ZEROFILL CODE */ |
17 | |
18 | #if defined(__has_include) |
19 | #if __has_include(<mach/mig_strncpy_zerofill_support.h>) |
20 | #ifndef USING_MIG_STRNCPY_ZEROFILL |
21 | #define USING_MIG_STRNCPY_ZEROFILL |
22 | #endif |
23 | #ifndef __MIG_STRNCPY_ZEROFILL_FORWARD_TYPE_DECLS__ |
24 | #define __MIG_STRNCPY_ZEROFILL_FORWARD_TYPE_DECLS__ |
25 | #ifdef __cplusplus |
26 | extern "C" { |
27 | #endif |
28 | #ifndef __MIG_STRNCPY_ZEROFILL_FORWARD_TYPE_DECLS_CSTRING_ATTR |
29 | #define __MIG_STRNCPY_ZEROFILL_FORWARD_TYPE_DECLS_CSTRING_COUNTEDBY_ATTR(C) __unsafe_indexable |
30 | #endif |
31 | extern int mig_strncpy_zerofill(char * dest, const char * src, int len) __attribute__((weak_import)); |
32 | #ifdef __cplusplus |
33 | } |
34 | #endif |
35 | #endif /* __MIG_STRNCPY_ZEROFILL_FORWARD_TYPE_DECLS__ */ |
36 | #endif /* __has_include(<mach/mig_strncpy_zerofill_support.h>) */ |
37 | #endif /* __has_include */ |
38 | |
39 | /* END MIG_STRNCPY_ZEROFILL CODE */ |
40 | |
41 | #if (__MigKernelSpecificCode) || (_MIG_KERNEL_SPECIFIC_CODE_) |
42 | #include <kern/ipc_mig.h> |
43 | #endif /* __MigKernelSpecificCode */ |
44 | |
45 | #ifdef AUTOTEST |
46 | #ifndef FUNCTION_PTR_T |
47 | #define FUNCTION_PTR_T |
48 | typedef void (*function_ptr_t)(mach_port_t, char *, mach_msg_type_number_t); |
49 | typedef struct { |
50 | char * name; |
51 | function_ptr_t function; |
52 | } function_table_entry; |
53 | typedef function_table_entry *function_table_t; |
54 | #endif /* FUNCTION_PTR_T */ |
55 | #endif /* AUTOTEST */ |
56 | |
57 | #ifndef coalition_notification_MSG_COUNT |
58 | #define coalition_notification_MSG_COUNT 1 |
59 | #endif /* coalition_notification_MSG_COUNT */ |
60 | |
61 | #include <Availability.h> |
62 | #include <mach/std_types.h> |
63 | #include <mach/mig.h> |
64 | #include <mach/mig.h> |
65 | #include <mach/mach_types.h> |
66 | |
67 | #ifdef __BeforeMigUserHeader |
68 | __BeforeMigUserHeader |
69 | #endif /* __BeforeMigUserHeader */ |
70 | |
71 | #include <sys/cdefs.h> |
72 | __BEGIN_DECLS |
73 | |
74 | |
75 | /* SimpleRoutine coalition_notification */ |
76 | #ifdef mig_external |
77 | mig_external |
78 | #else |
79 | extern |
80 | #endif /* mig_external */ |
81 | kern_return_t coalition_notification |
82 | ( |
83 | mach_port_t coalition_port, |
84 | uint64_t id, |
85 | uint32_t flags |
86 | ); |
87 | |
88 | __END_DECLS |
89 | |
90 | /********************** Caution **************************/ |
91 | /* The following data types should be used to calculate */ |
92 | /* maximum message sizes only. The actual message may be */ |
93 | /* smaller, and the position of the arguments within the */ |
94 | /* message layout may vary from what is presented here. */ |
95 | /* For example, if any of the arguments are variable- */ |
96 | /* sized, and less than the maximum is sent, the data */ |
97 | /* will be packed tight in the actual message to reduce */ |
98 | /* the presence of holes. */ |
99 | /********************** Caution **************************/ |
100 | |
101 | /* typedefs for all requests */ |
102 | |
103 | #ifndef __Request__coalition_notification_subsystem__defined |
104 | #define __Request__coalition_notification_subsystem__defined |
105 | |
106 | #ifdef __MigPackStructs |
107 | #pragma pack(push, 4) |
108 | #endif |
109 | typedef struct { |
110 | mach_msg_header_t Head; |
111 | NDR_record_t NDR; |
112 | uint64_t id; |
113 | uint32_t flags; |
114 | } __Request__coalition_notification_t __attribute__((unused)); |
115 | #ifdef __MigPackStructs |
116 | #pragma pack(pop) |
117 | #endif |
118 | #endif /* !__Request__coalition_notification_subsystem__defined */ |
119 | |
120 | /* union of all requests */ |
121 | |
122 | #ifndef __RequestUnion__coalition_notification_subsystem__defined |
123 | #define __RequestUnion__coalition_notification_subsystem__defined |
124 | union __RequestUnion__coalition_notification_subsystem { |
125 | __Request__coalition_notification_t Request_coalition_notification; |
126 | }; |
127 | #endif /* !__RequestUnion__coalition_notification_subsystem__defined */ |
128 | /* typedefs for all replies */ |
129 | |
130 | #ifndef __Reply__coalition_notification_subsystem__defined |
131 | #define __Reply__coalition_notification_subsystem__defined |
132 | |
133 | #ifdef __MigPackStructs |
134 | #pragma pack(push, 4) |
135 | #endif |
136 | typedef struct { |
137 | mach_msg_header_t Head; |
138 | NDR_record_t NDR; |
139 | kern_return_t RetCode; |
140 | } __Reply__coalition_notification_t __attribute__((unused)); |
141 | #ifdef __MigPackStructs |
142 | #pragma pack(pop) |
143 | #endif |
144 | #endif /* !__Reply__coalition_notification_subsystem__defined */ |
145 | |
146 | /* union of all replies */ |
147 | |
148 | #ifndef __ReplyUnion__coalition_notification_subsystem__defined |
149 | #define __ReplyUnion__coalition_notification_subsystem__defined |
150 | union __ReplyUnion__coalition_notification_subsystem { |
151 | __Reply__coalition_notification_t Reply_coalition_notification; |
152 | }; |
153 | #endif /* !__RequestUnion__coalition_notification_subsystem__defined */ |
154 | |
155 | #ifndef subsystem_to_name_map_coalition_notification |
156 | #define subsystem_to_name_map_coalition_notification \ |
157 | { "coalition_notification", 5300 } |
158 | #endif |
159 | |
160 | #ifdef __AfterMigUserHeader |
161 | __AfterMigUserHeader |
162 | #endif /* __AfterMigUserHeader */ |
163 | |
164 | #endif /* _coalition_notification_user_ */ |
165 | |