mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-10 20:58:29 -04:00
Add fpc_ProcID type and use it for all process IDs
See https://github.com/zeldaret/tp/pull/2173
This commit is contained in:
@@ -13,13 +13,13 @@
|
||||
#include "f_pc/f_pc_layer_iter.h"
|
||||
|
||||
/* 8003CD0C-8003CD28 .text fpcCtRq_isCreatingByID__FP10create_tagPUi */
|
||||
bool fpcCtRq_isCreatingByID(create_tag* i_createTag, uint* i_procID) {
|
||||
bool fpcCtRq_isCreatingByID(create_tag* i_createTag, fpc_ProcID* i_procID) {
|
||||
create_request* pReq = static_cast<create_request*>(i_createTag->base.mpTagData);
|
||||
return pReq->mBsPcId == *i_procID;
|
||||
}
|
||||
|
||||
/* 8003CD28-8003CD60 .text fpcCtRq_IsCreatingByID__FUi */
|
||||
BOOL fpcCtRq_IsCreatingByID(uint i_id) {
|
||||
BOOL fpcCtRq_IsCreatingByID(fpc_ProcID i_id) {
|
||||
return fpcCtIt_Judge((fpcLyIt_JudgeFunc)fpcCtRq_isCreatingByID, &i_id) != NULL ? TRUE : FALSE;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user