Files
tp/include/f_pc/f_pc_searcher.h
T

20 lines
432 B
C
Raw Normal View History

2021-03-28 22:49:05 +02:00
2021-04-01 12:06:29 +02:00
#ifndef F_PC_SEARCHER_H_
#define F_PC_SEARCHER_H_
2021-04-08 16:01:29 +02:00
#include "f_pc/f_pc_base.h"
#include "f_pc/f_pc_layer_iter.h"
2021-03-28 22:49:05 +02:00
2021-04-01 12:06:29 +02:00
void* fpcSch_JudgeForPName(void* pProc, void* pUserData);
void* fpcSch_JudgeByID(void* pProc, void* pUserData);
extern "C" {
void fpcSch_JudgeForPName__FPvPv(void);
}
inline base_process_class* i_fpcM_SearchByName(s16 name) {
return (base_process_class*)fpcLyIt_AllJudge(fpcSch_JudgeForPName, &name);
}
2021-04-01 12:06:29 +02:00
#endif