mirror of
https://github.com/zeldaret/tp
synced 2026-08-14 20:43:32 -04:00
80ba3d9fd2
* checkpoint * checkpoint * rename f_pc * checkpoint * small symbol rename and fix some fpc symbols * remove unneeded entries from ldscript * simplify ok check, update docker container Co-authored-by: Pheenoh <pheenoh@gmail.com>
21 lines
450 B
C++
21 lines
450 B
C++
|
|
#include "f/f_pc/f_pc_creator.h"
|
|
#include "dolphin/types.h"
|
|
#include "f/f_pc/f_pc_base.h"
|
|
#include "f/f_pc/f_pc_create_req.h"
|
|
|
|
BOOL fpcCt_IsCreatingByID(unsigned int id) {
|
|
return fpcCtRq_IsCreatingByID(id);
|
|
}
|
|
|
|
s32 fpcCt_IsDoing(base_process_class* pProc) {
|
|
return fpcCtRq_IsDoing(pProc->mpCtRq);
|
|
}
|
|
|
|
BOOL fpcCt_Abort(base_process_class* pProc) {
|
|
return fpcCtRq_Cancel(pProc->mpCtRq);
|
|
}
|
|
|
|
void fpcCt_Handler(void) {
|
|
fpcCtRq_Handler();
|
|
} |