mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-08-03 00:16:36 -04:00
80ba3d9fd2
* checkpoint * checkpoint * rename f_pc * checkpoint * small symbol rename and fix some fpc symbols * remove unneeded entries from ldscript * simplify ok check, update docker container Co-authored-by: Pheenoh <pheenoh@gmail.com>
16 lines
279 B
C
16 lines
279 B
C
|
|
#ifndef F_PC_SEARCHER_H_
|
|
#define F_PC_SEARCHER_H_
|
|
|
|
#include "f/f_pc/f_pc_base.h"
|
|
#include "global.h"
|
|
|
|
void* fpcSch_JudgeForPName(void* pProc, void* pUserData);
|
|
void* fpcSch_JudgeByID(void* pProc, void* pUserData);
|
|
|
|
extern "C" {
|
|
void fpcSch_JudgeForPName__FPvPv(void);
|
|
}
|
|
|
|
#endif
|