27 lines
458 B
C
27 lines
458 B
C
#ifndef ROSETTA_MSG_LD_H_
|
|
#define ROSETTA_MSG_LD_H_
|
|
|
|
#include <rosetta/msg.h>
|
|
|
|
/* rosetta.msg.ld protocol ID */
|
|
#define ROSETTA_MSG_LD 0x5563D896U
|
|
|
|
/* rosetta.msg.ld.get-object message ID */
|
|
#define ROSETTA_MSG_LD_GET_OBJECT 1
|
|
|
|
struct rosetta_msg_ld_get_object {
|
|
struct rosetta_msg msg_base;
|
|
union {
|
|
struct {
|
|
uint16_t go_object_name;
|
|
} msg_request;
|
|
|
|
struct {
|
|
int go_err;
|
|
uint16_t go_object_index;
|
|
} msg_response;
|
|
};
|
|
};
|
|
|
|
#endif
|