Stub out most of DynamicLink.cpp and more of c_dylink.cpp

This code wasn't used (no dynamic linking) and was causing various compiler warnings that don't make sense to clean up. Get rid of it.
This commit is contained in:
PJB3005
2026-04-11 19:46:22 +02:00
parent 970ead7e13
commit cd09e872ee
2 changed files with 13 additions and 0 deletions
+8
View File
@@ -898,6 +898,9 @@ BOOL cDyl_IsLinked(s16 i_ProfName) {
}
BOOL cDyl_Unlink(s16 i_ProfName) {
#if TARGET_PC
return FALSE;
#else
#if DEBUG
cCc_Check();
#endif
@@ -911,9 +914,13 @@ BOOL cDyl_Unlink(s16 i_ProfName) {
}
return FALSE;
#endif
}
int cDyl_LinkASync(s16 i_ProfName) {
#if TARGET_PC
return cPhs_COMPLEATE_e;
#else
#if DEBUG
cCc_Check();
#endif
@@ -953,6 +960,7 @@ int cDyl_LinkASync(s16 i_ProfName) {
}
return cPhs_COMPLEATE_e;
#endif
}
static int cDyl_InitCallback(void* param_0) {