mirror of
https://github.com/encounter/tp.git
synced 2026-03-30 11:40:53 -07:00
14 lines
253 B
C
14 lines
253 B
C
|
|
#ifndef F_PC_METHOD_ITER_H_
|
|
#define F_PC_METHOD_ITER_H_
|
|
|
|
#include <types.h>
|
|
|
|
typedef struct node_list_class node_list_class;
|
|
|
|
typedef int (*fpcMtdIt_MethodFunc)(void*);
|
|
|
|
int fpcMtdIt_Method(node_list_class* pList, fpcMtdIt_MethodFunc pMethod);
|
|
|
|
#endif
|