fopScnM_ChangeReq OK

This commit is contained in:
Pheenoh
2021-02-21 17:50:16 -05:00
parent f256d97ddf
commit eeecf4cf69
20 changed files with 58 additions and 40 deletions
+9
View File
@@ -1,5 +1,14 @@
#ifndef F_F_OP_SCENE_MNG_H_
#define F_F_OP_SCENE_MNG_H_
#include "f/f_op/f_op_scene_pause.h"
void* fopScnM_SearchByID(unsigned int id);
int fopScnM_ChangeReq(scene_class*, s16, s16, u16);
void fopScnM_DeleteReq(scene_class*);
void fopScnM_CreateReq(s16, s16, u16, u32);
void fopScnM_ReRequest(s16, u32) ;
void fopScnM_Management(void);
void fopScnM_Init(void);
#endif
+11
View File
@@ -0,0 +1,11 @@
#ifndef F_F_OP_SCENE_REQ_H_
#define F_F_OP_SCENE_REQ_H_
extern "C" {
void fopScnRq_Handler(void);
void fopScnRq_ReRequest(void);
}
u32 fopScnRq_Request(int,scene_class*,s16,void*,s16,u16);
#endif