mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-02-28 07:33:42 +01:00
17 lines
331 B
C++
17 lines
331 B
C++
![]() |
#include "Cafe/OS/common/OSCommon.h"
|
||
|
#include "drmapp.h"
|
||
|
|
||
|
namespace drmapp
|
||
|
{
|
||
|
uint32 NupChkIsFinished(uint32 ukn)
|
||
|
{
|
||
|
forceLogDebug_printf("drmapp.NupChkIsFinished() - placeholder");
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
void Initialize()
|
||
|
{
|
||
|
cafeExportRegisterFunc(NupChkIsFinished, "drmapp", "NupChkIsFinished__3RplFv", LogType::Placeholder);
|
||
|
}
|
||
|
}
|