mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-07-12 21:45:19 -04:00
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
This commit is contained in:
@@ -5,7 +5,6 @@
|
||||
|
||||
#include "f_pc/f_pc_method.h"
|
||||
|
||||
/* 80022428-80022460 0038+00 s=4 e=6 z=0 None .text fpcMtd_Method__FPFPv_iPv */
|
||||
s32 fpcMtd_Method(process_method_func i_method, void* i_process) {
|
||||
if (i_method != NULL)
|
||||
return i_method(i_process);
|
||||
@@ -13,26 +12,18 @@ s32 fpcMtd_Method(process_method_func i_method, void* i_process) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
/* 80022460-80022484 0024+00 s=0 e=10 z=0 None .text fpcMtd_Execute__FP20process_method_classPv
|
||||
*/
|
||||
s32 fpcMtd_Execute(process_method_class* i_methods, void* i_process) {
|
||||
return fpcMtd_Method(i_methods->execute_method, i_process);
|
||||
}
|
||||
|
||||
/* 80022484-800224A8 0024+00 s=0 e=10 z=0 None .text fpcMtd_IsDelete__FP20process_method_classPv
|
||||
*/
|
||||
s32 fpcMtd_IsDelete(process_method_class* i_methods, void* i_process) {
|
||||
return fpcMtd_Method(i_methods->is_delete_method, i_process);
|
||||
}
|
||||
|
||||
/* 800224A8-800224CC 0024+00 s=0 e=10 z=0 None .text fpcMtd_Delete__FP20process_method_classPv
|
||||
*/
|
||||
s32 fpcMtd_Delete(process_method_class* i_methods, void* i_process) {
|
||||
return fpcMtd_Method(i_methods->delete_method, i_process);
|
||||
}
|
||||
|
||||
/* 800224CC-800224F0 0024+00 s=0 e=10 z=0 None .text fpcMtd_Create__FP20process_method_classPv
|
||||
*/
|
||||
s32 fpcMtd_Create(process_method_class* i_methods, void* i_process) {
|
||||
return fpcMtd_Method(i_methods->create_method, i_process);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user