Files
tp/include/f_op/f_op_msg_mng.h
T

16 lines
418 B
C
Raw Normal View History

2021-04-09 01:22:16 +02:00
#ifndef F_F_OP_MSG_MNG_H_
#define F_F_OP_MSG_MNG_H_
2021-03-28 22:49:05 +02:00
#include "dolphin/types.h"
2021-04-09 01:22:16 +02:00
#include "f_op/f_op_actor.h"
2021-03-28 22:49:05 +02:00
2021-04-09 01:22:16 +02:00
typedef int (*fopMsgCreateFunc)(void*);
2021-12-04 16:27:19 -08:00
JKRExpHeap* fopMsgM_createExpHeap(u32, JKRHeap*);
u32 fopMsgM_Create(s16, fopMsgCreateFunc, void*);
void fopMsgM_setMessageID(unsigned int);
void fopMsgM_destroyExpHeap(JKRExpHeap*);
2022-01-04 04:53:20 -08:00
void fopMsgM_setStageLayer(void*);
2022-02-24 14:04:56 -08:00
void fopMsgM_messageSetDemo(u32 param_0);
2021-12-04 16:27:19 -08:00
2021-04-09 01:22:16 +02:00
#endif