16 lines
226 B
C
16 lines
226 B
C
#ifndef ROSETTA_MSG_H_
|
|
#define ROSETTA_MSG_H_
|
|
|
|
#define ROSETTA_MSG_MAGIC 0x9AB07D10U
|
|
|
|
#include <stdint.h>
|
|
|
|
struct rosetta_msg {
|
|
uint32_t msg_magic;
|
|
uint32_t msg_protocol;
|
|
uint16_t msg_id;
|
|
uint16_t msg_reserved;
|
|
};
|
|
|
|
#endif
|