diff options
| author | Pheenoh <pheenoh@gmail.com> | 2022-12-27 22:43:29 -0700 |
|---|---|---|
| committer | Pheenoh <pheenoh@gmail.com> | 2022-12-27 22:43:29 -0700 |
| commit | 791399ac6cfaf2e6bfb362cd0e29a6271eb8bbf6 (patch) | |
| tree | b800c13667eb2ecda20446f4b08d34cddbacdbc8 /include | |
| parent | 9b5bc55f2a958e46e1ce5d108ff82694524f1f88 (diff) | |
fopKy_Create attempt
Diffstat (limited to 'include')
| -rw-r--r-- | include/f_op/f_op_kankyo.h | 5 | ||||
| -rw-r--r-- | include/f_pc/f_pc_manager.h | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/include/f_op/f_op_kankyo.h b/include/f_op/f_op_kankyo.h index e88eeb1b1a..7496364ac4 100644 --- a/include/f_op/f_op_kankyo.h +++ b/include/f_op/f_op_kankyo.h @@ -2,5 +2,10 @@ #define F_OP_F_OP_KANKYO_H #include "dolphin/types.h" +#include "f_pc/f_pc_manager.h" + +inline void* fopKyM_GetAppend(void* param_0) { + return fpcM_GetAppend(param_0); +} #endif /* F_OP_F_OP_KANKYO_H */ diff --git a/include/f_pc/f_pc_manager.h b/include/f_pc/f_pc_manager.h index 84d376093e..cebe63b454 100644 --- a/include/f_pc/f_pc_manager.h +++ b/include/f_pc/f_pc_manager.h @@ -9,6 +9,7 @@ #include "f_pc/f_pc_node_req.h" #include "f_pc/f_pc_stdcreate_req.h" #include "f_pc/f_pc_executor.h" +#include "f_pc/f_pc_leaf.h" typedef int (*FastCreateReqFunc)(void*); typedef void (*fpcM_ManagementFunc)(void); @@ -37,6 +38,10 @@ inline int fpcM_Create(s16 procName, FastCreateReqFunc createFunc, void* process process); } +inline s16 fpcM_DrawPriority(const void* param_0) { + return fpcLf_GetPriority((const leafdraw_class*)param_0); +} + inline s32 fpcM_ChangeLayerID(void* proc, int layerID) { return fpcPi_Change(&((base_process_class*)proc)->mPi, layerID, 0xFFFD, 0xFFFD); } |
