Files
dusklight/src/f_pc/f_pc_method_iter.cpp
T
TakaRikka dfa8efa97b project cleanup (#2895)
* some wii OS fixes

* remove old dol2asm comments

* remove dol2asm.h

* remove function address comments

* normalize ATTRIBUTE_ALIGN usage

* DECL_WEAK macro

* fix gcc attribute weak macro

* wrap more mwcc specific things in ifdefs

* fixes

* fix revo sdk version flags

* fixes
2025-11-30 15:23:42 -07:00

12 lines
309 B
C++

/**
* f_pc_method_iter.cpp
* Framework - Process Method Iteration
*/
#include "SSystem/SComponent/c_list_iter.h"
#include "f_pc/f_pc_method_iter.h"
int fpcMtdIt_Method(node_list_class* i_nodeList, fpcMtdIt_MethodFunc i_methods) {
return cLsIt_Method(i_nodeList, (cNdIt_MethodFunc)i_methods, NULL);
}