lib: add libmsg* ipc protocol libraries

This commit is contained in:
2026-02-19 19:29:17 +00:00
parent ff66c8d89f
commit 1e6748b4fc
9 changed files with 140 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#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