mirror of
https://github.com/libretro/ppsspp.git
synced 2025-04-02 19:51:44 +00:00
70 lines
1.4 KiB
C++
70 lines
1.4 KiB
C++
#include "scePspNpDrm_user.h"
|
|
|
|
#include "HLE.h"
|
|
|
|
int sceNpDrmSetLicenseeKey()
|
|
{
|
|
ERROR_LOG(HLE, "UNIMPL sceNpDrmSetLicenseeKey");
|
|
return 0;
|
|
}
|
|
|
|
int sceNpDrmClearLicenseeKey()
|
|
{
|
|
ERROR_LOG(HLE, "UNIMPL sceNpDrmClearLicenseeKey");
|
|
return 0;
|
|
}
|
|
|
|
int sceNpDrmRenameCheck()
|
|
{
|
|
ERROR_LOG(HLE, "UNIMPL sceNpDrmRenameCheck");
|
|
return 0;
|
|
}
|
|
|
|
int sceNpDrmEdataSetupKey(u32 edataFd)
|
|
{
|
|
ERROR_LOG(HLE, "UNIMPL sceNpDrmEdataSetupKey %x", edataFd);
|
|
return 0;
|
|
}
|
|
|
|
int sceNpDrmEdataGetDataSize(u32 edataFd)
|
|
{
|
|
ERROR_LOG(HLE, "UNIMPL sceNpDrmEdataGetDataSize %x", edataFd);
|
|
return 0;
|
|
}
|
|
|
|
int sceNpDrmOpen()
|
|
{
|
|
ERROR_LOG(HLE, "UNIMPL sceNpDrmOpen");
|
|
return 0;
|
|
}
|
|
|
|
int sceKernelLoadModuleNpDrm()
|
|
{
|
|
ERROR_LOG(HLE, "UNIMPL sceKernelLoadModuleNpDrm");
|
|
return 0;
|
|
}
|
|
|
|
int sceKernelLoadExecNpDrm()
|
|
{
|
|
ERROR_LOG(HLE, "UNIMPL sceKernelLoadExecNpDrm");
|
|
return 0;
|
|
}
|
|
|
|
const HLEFunction sceNpDrm[] =
|
|
{
|
|
{0xA1336091, 0, "sceNpDrmSetLicenseeKey"},
|
|
{0x9B745542, 0, "sceNpDrmClearLicenseeKey"},
|
|
{0x275987D1, 0, "sceNpDrmRenameCheck"},
|
|
{0x08d98894, WrapI_U<sceNpDrmEdataSetupKey>, "sceNpDrmEdataSetupKey"},
|
|
{0x219EF5CC, WrapI_U<sceNpDrmEdataGetDataSize>, "sceNpDrmEdataGetDataSize"},
|
|
{0x2BAA4294, 0, "sceNpDrmOpen"},
|
|
{0xC618D0B1, 0, "sceKernelLoadModuleNpDrm"},
|
|
{0xAA5FC85B, 0, "sceKernelLoadExecNpDrm"},
|
|
};
|
|
|
|
void Register_sceNpDrm()
|
|
{
|
|
RegisterModule("sceNpDrm", ARRAY_SIZE(sceNpDrm), sceNpDrm);
|
|
RegisterModule("scePspNpDrm_user", ARRAY_SIZE(sceNpDrm), sceNpDrm);
|
|
}
|
|
|