mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-24 06:50:43 -04:00
dfa8efa97b
* some wii OS fixes * remove old dol2asm comments * remove dol2asm.h * remove function address comments * normalize ATTRIBUTE_ALIGN usage * DECL_WEAK macro * fix gcc attribute weak macro * wrap more mwcc specific things in ifdefs * fixes * fix revo sdk version flags * fixes
25 lines
494 B
C++
25 lines
494 B
C++
/**
|
|
* f_pc_creator.cpp
|
|
* Framework - Process Creator
|
|
*/
|
|
|
|
#include "f_pc/f_pc_creator.h"
|
|
#include "f_pc/f_pc_base.h"
|
|
#include "f_pc/f_pc_create_req.h"
|
|
|
|
BOOL fpcCt_IsCreatingByID(fpc_ProcID i_id) {
|
|
return fpcCtRq_IsCreatingByID(i_id);
|
|
}
|
|
|
|
BOOL fpcCt_IsDoing(base_process_class* i_proc) {
|
|
return fpcCtRq_IsDoing(i_proc->create_req);
|
|
}
|
|
|
|
BOOL fpcCt_Abort(base_process_class* i_proc) {
|
|
return fpcCtRq_Cancel(i_proc->create_req);
|
|
}
|
|
|
|
int fpcCt_Handler() {
|
|
return fpcCtRq_Handler();
|
|
}
|