mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -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>
17 lines
426 B
C
17 lines
426 B
C
|
|
#ifndef SCOMPONENT_C_NODE_ITER_H_
|
|
#define SCOMPONENT_C_NODE_ITER_H_
|
|
|
|
#include "SComponent/c_node.h"
|
|
|
|
extern "C" {
|
|
|
|
typedef int (*cNdIt_MethodFunc)(node_class* pNode, void* pUserData);
|
|
int cNdIt_Method(node_class* pNode, cNdIt_MethodFunc pMethod, void* pUserData);
|
|
|
|
typedef void* (*cNdIt_JudgeFunc)(node_class* pNode, void* pUserData);
|
|
void* cNdIt_Judge(node_class* pNode, cNdIt_JudgeFunc pJudge, void* pUserData);
|
|
};
|
|
|
|
#endif
|