mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 15:01:53 -04:00
16 lines
284 B
C
16 lines
284 B
C
|
|
#ifndef F_PC_SEARCHER_H_
|
|
#define F_PC_SEARCHER_H_
|
|
|
|
#include "dolphin/types.h"
|
|
#include "f_pc/f_pc_base.h"
|
|
|
|
void* fpcSch_JudgeForPName(void* pProc, void* pUserData);
|
|
void* fpcSch_JudgeByID(void* pProc, void* pUserData);
|
|
|
|
extern "C" {
|
|
void fpcSch_JudgeForPName__FPvPv(void);
|
|
}
|
|
|
|
#endif
|