mirror of
https://github.com/zeldaret/tww.git
synced 2026-05-29 16:44:40 -04:00
16 lines
374 B
C
16 lines
374 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);
|
|
|
|
inline base_process_class* fpcM_SearchByName(s16 name) {
|
|
return (base_process_class*)fpcLyIt_AllJudge(fpcSch_JudgeForPName, &name);
|
|
}
|
|
|
|
#endif
|