some cleanup of f_pc/f_op files (#2254)

* cleanup f_pc files

* cleanup f_op files

* fix a couple f_op_actor_mng functions

* minor JSystem work
This commit is contained in:
TakaRikka
2024-11-29 08:24:26 -08:00
committed by GitHub
parent 6482fe7535
commit 073992df8d
903 changed files with 6835 additions and 6587 deletions
+3 -7
View File
@@ -7,23 +7,19 @@
#include "f_pc/f_pc_base.h"
#include "f_pc/f_pc_create_req.h"
//
// Declarations:
//
/* 80020EA8-80020EC8 0020+00 s=0 e=1 z=0 None .text fpcCt_IsCreatingByID__FUi */
BOOL fpcCt_IsCreatingByID(fpc_ProcID i_id) {
return fpcCtRq_IsCreatingByID(i_id);
}
/* 80020EC8-80020EEC 0024+00 s=0 e=1 z=0 None .text fpcCt_IsDoing__FP18base_process_class */
s32 fpcCt_IsDoing(base_process_class* i_proc) {
return fpcCtRq_IsDoing(i_proc->mpCtRq);
BOOL fpcCt_IsDoing(base_process_class* i_proc) {
return fpcCtRq_IsDoing(i_proc->create_req);
}
/* 80020EEC-80020F10 0024+00 s=0 e=1 z=0 None .text fpcCt_Abort__FP18base_process_class */
BOOL fpcCt_Abort(base_process_class* i_proc) {
return fpcCtRq_Cancel(i_proc->mpCtRq);
return fpcCtRq_Cancel(i_proc->create_req);
}
/* 80020F10-80020F30 0020+00 s=0 e=1 z=0 None .text fpcCt_Handler__Fv */