Files
ivy/mie/include/mie/msg.h

16 lines
249 B
C

#ifndef MIE_MSG_H_
#define MIE_MSG_H_
#include <mie/instr.h>
#include <mie/type.h>
struct mie_msg {
struct mie_instr msg_base;
struct mie_type *msg_ret_type;
struct mie_value *msg_recipient;
const char *msg_name;
b_queue msg_args;
};
#endif