mirror of
https://github.com/encounter/tp.git
synced 2026-07-11 06:18:46 -07:00
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 */
|