1 #ifndef _LINK_MESSAGE_H_ 2 #define _LINK_MESSAGE_H_ 3 4 5 #include <SupportDefs.h> 6 7 8 struct message_header { 9 int32 size; 10 uint32 code; 11 uint32 flags; 12 }; 13 14 #endif /* _LINK_MESSAGE_H_ */ 15