mirror of
https://github.com/zeldaret/tp
synced 2026-08-15 12:59:14 -04:00
A few f_pc files (#26)
* f_pc_base, one non matching * some of f_pc_manager * f_pc_node OK * f_pc_pause partly * started node_req * more progress * most of node req * delete unused asm * node req header and param names * param renaming * header for manager * review comment struct names * fpcM_Management OK * int -> s32 * merge master * most of f_pc_create_iter * f_pc_stdcreate_req OK * f_pc_fstcreate OK * f_pc_leaf OK * f_pc_draw OK * f_pc_deletor partly * fix parameter type in f_pc_pause * review * review, use cPh enum and fix process_profile_definition struct * convert f_pc files to C * matched more functions * fix global.h * fix variable types * format * mpre Phs enum * fix merge errors * fix gamepad stopPatternedRumble * format * delete leftover files from merge * move asm to correct folder * revert f_pc from C to CPP * remove C hacks and format * format * OK
This commit is contained in:
@@ -1,23 +1,24 @@
|
||||
|
||||
#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"
|
||||
|
||||
extern "C" {
|
||||
|
||||
bool fpcCt_IsCreatingByID(unsigned int id) {
|
||||
BOOL fpcCt_IsCreatingByID(u32 id) {
|
||||
return fpcCtRq_IsCreatingByID(id);
|
||||
}
|
||||
|
||||
int fpcCt_IsDoing(base_process_class* pProc) {
|
||||
s32 fpcCt_IsDoing(base_process_class* pProc) {
|
||||
return fpcCtRq_IsDoing(pProc->mpCtRq);
|
||||
}
|
||||
|
||||
void fpcCt_Abort(base_process_class* pProc) {
|
||||
fpcCtRq_Cancel(pProc->mpCtRq);
|
||||
BOOL fpcCt_Abort(base_process_class* pProc) {
|
||||
return fpcCtRq_Cancel(pProc->mpCtRq);
|
||||
}
|
||||
|
||||
void fpcCt_Handler(void) {
|
||||
fpcCtRq_Handler();
|
||||
}
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user