mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-25 15:05:06 -04:00
dfa8efa97b
* 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
12 lines
309 B
C++
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);
|
|
}
|