D | ipc_message_macros.h | 225 #define IPC_MESSAGE_CONTROL0(msg_class) \ argument 226 IPC_MESSAGE_DECL(EMPTY, CONTROL, msg_class, 0, 0, (), ()) 228 #define IPC_MESSAGE_CONTROL1(msg_class, type1) \ argument 229 IPC_MESSAGE_DECL(ASYNC, CONTROL, msg_class, 1, 0, (type1), ()) 231 #define IPC_MESSAGE_CONTROL2(msg_class, type1, type2) \ argument 232 IPC_MESSAGE_DECL(ASYNC, CONTROL, msg_class, 2, 0, (type1, type2), ()) 234 #define IPC_MESSAGE_CONTROL3(msg_class, type1, type2, type3) \ argument 235 IPC_MESSAGE_DECL(ASYNC, CONTROL, msg_class, 3, 0, (type1, type2, type3), ()) 237 #define IPC_MESSAGE_CONTROL4(msg_class, type1, type2, type3, type4) \ argument 238 IPC_MESSAGE_DECL(ASYNC, CONTROL, msg_class, 4, 0, (type1, type2, type3, type4), ()) [all …]
|