mirror of
https://github.com/zeldaret/tp
synced 2026-05-30 00:47:05 -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>
22 lines
569 B
C
22 lines
569 B
C
#ifndef F_PC_LAYER_ITER_H_
|
|
#define F_PC_LAYER_ITER_H_
|
|
|
|
#include "SComponent/c_node_iter.h"
|
|
#include "f/f_pc/f_pc_layer.h"
|
|
#include "global.h"
|
|
|
|
typedef struct layer_iter {
|
|
void* mpFunc;
|
|
void* mpUserData;
|
|
} layer_iter;
|
|
|
|
extern "C" {
|
|
|
|
s32 fpcLyIt_OnlyHere(layer_class* pLayer, cNdIt_MethodFunc pFunc, void* pUserData);
|
|
s32 fpcLyIt_OnlyHereLY(layer_class* pLayer, cNdIt_MethodFunc pFunc, void* pUserData);
|
|
void* fpcLyIt_Judge(layer_class* pLayer, cNdIt_MethodFunc pFunc, void* pUserData);
|
|
void* fpcLyIt_AllJudge(cNdIt_MethodFunc pFunc, void* pUserData);
|
|
};
|
|
|
|
#endif
|