Files
tww/include/f_pc/f_pc_method_iter.h
2025-03-17 22:26:56 -04:00

14 lines
262 B
C

#ifndef F_PC_METHOD_ITER_H_
#define F_PC_METHOD_ITER_H_
#include "dolphin/types.h"
typedef struct node_list_class node_list_class;
typedef int (*fpcMtdIt_MethodFunc)(void*);
BOOL fpcMtdIt_Method(node_list_class* pList, fpcMtdIt_MethodFunc pMethod);
#endif