mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-06-08 11:47:03 -04:00
f_pc mostly linked for Wii/Shield (#3015)
This commit is contained in:
@@ -5,25 +5,25 @@
|
||||
|
||||
#include "f_pc/f_pc_method.h"
|
||||
|
||||
s32 fpcMtd_Method(process_method_func i_method, void* i_process) {
|
||||
int fpcMtd_Method(process_method_func i_method, void* i_process) {
|
||||
if (i_method != NULL)
|
||||
return i_method(i_process);
|
||||
else
|
||||
return 1;
|
||||
}
|
||||
|
||||
s32 fpcMtd_Execute(process_method_class* i_methods, void* i_process) {
|
||||
int fpcMtd_Execute(process_method_class* i_methods, void* i_process) {
|
||||
return fpcMtd_Method(i_methods->execute_method, i_process);
|
||||
}
|
||||
|
||||
s32 fpcMtd_IsDelete(process_method_class* i_methods, void* i_process) {
|
||||
int fpcMtd_IsDelete(process_method_class* i_methods, void* i_process) {
|
||||
return fpcMtd_Method(i_methods->is_delete_method, i_process);
|
||||
}
|
||||
|
||||
s32 fpcMtd_Delete(process_method_class* i_methods, void* i_process) {
|
||||
int fpcMtd_Delete(process_method_class* i_methods, void* i_process) {
|
||||
return fpcMtd_Method(i_methods->delete_method, i_process);
|
||||
}
|
||||
|
||||
s32 fpcMtd_Create(process_method_class* i_methods, void* i_process) {
|
||||
int 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