mirror of
https://github.com/zeldaret/tww.git
synced 2024-11-26 23:01:24 +00:00
20 lines
430 B
C
20 lines
430 B
C
|
|
#ifndef F_PC_SEARCHER_H_
|
|
#define F_PC_SEARCHER_H_
|
|
|
|
#include "f_pc/f_pc_base.h"
|
|
#include "f_pc/f_pc_layer_iter.h"
|
|
|
|
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* fpcM_SearchByName(s16 name) {
|
|
return (base_process_class*)fpcLyIt_AllJudge(fpcSch_JudgeForPName, &name);
|
|
}
|
|
|
|
#endif
|