Split mevent_client from mevent_server

This commit is contained in:
PikalaxALT
2019-11-04 09:07:15 -05:00
parent 7d6ded658c
commit 0f4621c730
6 changed files with 308 additions and 285 deletions
+4 -4
View File
@@ -31,7 +31,7 @@ struct send_recv_header
u16 size;
};
struct mevent_cmd_ish
struct mevent_client_cmd
{
u32 instr;
u32 parameter;
@@ -46,12 +46,12 @@ struct mevent_client
u32 cmdidx;
void * sendBuffer;
void * recvBuffer;
struct mevent_cmd_ish * cmdBuffer;
struct mevent_client_cmd * cmdBuffer;
void * buffer;
struct mevent_srv_sub manager;
};
struct mevent_cmd
struct mevent_server_cmd
{
u32 instr;
bool32 flag;
@@ -64,7 +64,7 @@ struct mevent_srv_common
u32 param;
u32 mainseqno;
u32 cmdidx;
const struct mevent_cmd * cmdBuffer;
const struct mevent_server_cmd * cmdBuffer;
void * recvBuffer;
struct MEventBuffer_32E0_Sub * card;
struct MEventBuffer_3120_Sub * news;