mirror of
https://github.com/zeldaret/tp
synced 2026-06-27 10:43:03 -04:00
c70d485d35
i previously had a bad habit of using double underscores in include guard macro names, which are implementation-reserved per the C++98 standard (see 17.4.3.1.2 Global names). Co-authored-by: Pheenoh <pheenoh@gmail.com>
15 lines
268 B
C
15 lines
268 B
C
|
|
#ifndef F_PC_SEARCHER_H_
|
|
#define F_PC_SEARCHER_H_
|
|
|
|
#include "f/f_pc/f_pc_base.h"
|
|
#include "global.h"
|
|
|
|
extern "C" {
|
|
|
|
void* fpcSch_JudgeForPName(base_process_class* pProc, void* pUserData);
|
|
void* fpcSch_JudgeByID(base_process_class* pProc, void* pUserData);
|
|
};
|
|
|
|
#endif
|