Moved from ais_msg.h so ais_msg.h doesn't need to be included by evt.

(Logical change 1.130)


git-svn-id: http://svn.fedorahosted.org/svn/corosync/trunk@464 fd59a12c-fef9-0310-b244-a6a79926bd2f
This commit is contained in:
Mark Haverkamp 2005-02-04 21:19:20 +00:00
parent 58b1b579c0
commit c7e13c84e8

View File

@ -76,4 +76,16 @@ enum nodeexec_message_types {
MESSAGE_REQ_EXEC_EVT_RECOVERY_EVENTDATA
};
struct req_header {
int size;
int id;
} __attribute__((packed));
struct res_header {
int size;
int id;
SaErrorT error;
};
#endif /* IPC_GEN_H_DEFINED */