blob: 76a952e457796d67824421b9554296c2611526f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
//
// Generated by dtk
// Translation Unit: f_pc_searcher.cpp
//
#include "f_pc/f_pc_searcher.h"
/* 80040050-80040068 .text fpcSch_JudgeForPName__FPvPv */
void* fpcSch_JudgeForPName(void* i_proc, void* i_data) {
if (((base_process_class*)i_proc)->mProcName == *(s16*)i_data)
return i_proc;
return NULL;
}
/* 80040068-80040080 .text fpcSch_JudgeByID__FPvPv */
void* fpcSch_JudgeByID(void* i_proc, void* i_data) {
if (((base_process_class*)i_proc)->mBsPcId == *(fpc_ProcID*)i_data)
return i_proc;
return NULL;
}
|