mirror of https://github.com/zeldaret/tp.git
12 lines
353 B
C
12 lines
353 B
C
#ifndef C_LIST_ITER_H
|
|
#define C_LIST_ITER_H
|
|
|
|
#include "SSystem/SComponent/c_list.h"
|
|
#include "SSystem/SComponent/c_node_iter.h"
|
|
#include "dolphin/types.h"
|
|
|
|
int cLsIt_Method(node_list_class* pList, cNdIt_MethodFunc pMethod, void* pUserData);
|
|
void* cLsIt_Judge(node_list_class* pList, cNdIt_JudgeFunc pJudge, void* pUserData);
|
|
|
|
#endif /* C_LIST_ITER_H */
|