Files
tp/include/f_pc/f_pc_method_iter.h
T

14 lines
261 B
C
Raw Normal View History

2021-03-28 22:49:05 +02:00
2021-04-01 12:06:29 +02:00
#ifndef F_PC_METHOD_ITER_H_
#define F_PC_METHOD_ITER_H_
2021-03-28 22:49:05 +02:00
#include "dolphin/types.h"
2023-05-12 12:10:14 -07:00
typedef struct node_list_class node_list_class;
2021-04-01 12:06:29 +02:00
typedef int (*fpcMtdIt_MethodFunc)(void*);
2024-11-29 08:24:26 -08:00
int fpcMtdIt_Method(node_list_class* pList, fpcMtdIt_MethodFunc pMethod);
2021-04-01 12:06:29 +02:00
#endif