drmapp: Stub more functions to allow title loading from Wii U Menu (#1161)

This commit is contained in:
Maschell 2024-04-08 19:50:57 +02:00 committed by GitHub
parent efbf712305
commit 9b30be0258
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -9,8 +9,29 @@ namespace drmapp
return 1; return 1;
} }
uint32 PatchChkIsFinished()
{
cemuLog_logDebug(LogType::Force, "drmapp.PatchChkIsFinished() - placeholder");
return 1;
}
uint32 AocChkIsFinished()
{
cemuLog_logDebug(LogType::Force, "drmapp.AocChkIsFinished() - placeholder");
return 1;
}
uint32 TicketChkIsFinished()
{
cemuLog_logDebug(LogType::Force, "drmapp.TicketChkIsFinished__3RplFv() - placeholder");
return 1;
}
void Initialize() void Initialize()
{ {
cafeExportRegisterFunc(NupChkIsFinished, "drmapp", "NupChkIsFinished__3RplFv", LogType::Placeholder); cafeExportRegisterFunc(NupChkIsFinished, "drmapp", "NupChkIsFinished__3RplFv", LogType::Placeholder);
cafeExportRegisterFunc(PatchChkIsFinished, "drmapp", "PatchChkIsFinished__3RplFv", LogType::Placeholder);
cafeExportRegisterFunc(AocChkIsFinished, "drmapp", "AocChkIsFinished__3RplFv", LogType::Placeholder);
cafeExportRegisterFunc(TicketChkIsFinished, "drmapp", "TicketChkIsFinished__3RplFv", LogType::Placeholder);
} }
} } // namespace drmapp