tww/include/f_pc/f_pc_method_iter.h
Luke Street adb95b135c Import project
Original repository: https://github.com/encounter/ww
2023-09-10 00:48:55 -04:00

14 lines
261 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*);
int fpcMtdIt_Method(node_list_class* pList, fpcMtdIt_MethodFunc pMethod);
#endif