mirror of
https://github.com/encounter/tp.git
synced 2026-07-11 06:18:46 -07:00
* d_a_obj_carry work, SETUP_ACTOR macro * rm headers, add script * progress * macro rename, consistent spacing
12 lines
336 B
C
12 lines
336 B
C
#ifndef C_LIST_ITER_H
|
|
#define C_LIST_ITER_H
|
|
|
|
#include "SSystem/SComponent/c_node_iter.h"
|
|
|
|
typedef struct node_list_class node_list_class;
|
|
|
|
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 */
|