mirror of
https://github.com/cemu-project/Cemu.git
synced 2024-11-22 09:09:18 +01:00
drmapp: Stub more functions to allow title loading from Wii U Menu (#1161)
This commit is contained in:
parent
efbf712305
commit
9b30be0258
@ -9,8 +9,29 @@ namespace drmapp
|
||||
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()
|
||||
{
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user