mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-10 17:01:24 +12:00
sceNp: Register missing functions (#2291)
Registers missing named functions exported from sceNp on firmware 4.76
This commit is contained in:
parent
b6f8eface7
commit
5e8852af80
1 changed files with 21 additions and 0 deletions
|
@ -1464,6 +1464,24 @@ s32 sceNpUtilCmpNpIdInOrder()
|
||||||
return CELL_OK;
|
return CELL_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
s32 sceNpUtilCmpOnlineId()
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED_FUNC(sceNp);
|
||||||
|
return CELL_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
s32 sceNpUtilGetPlatformType()
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED_FUNC(sceNp);
|
||||||
|
return CELL_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
s32 sceNpUtilSetPlatformType()
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED_FUNC(sceNp);
|
||||||
|
return CELL_OK;
|
||||||
|
}
|
||||||
|
|
||||||
s32 _sceNpSysutilClientMalloc()
|
s32 _sceNpSysutilClientMalloc()
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(sceNp);
|
UNIMPLEMENTED_FUNC(sceNp);
|
||||||
|
@ -1744,6 +1762,9 @@ DECLARE(ppu_module_manager::sceNp)("sceNp", []()
|
||||||
REG_FUNC(sceNp, sceNpSignalingGetPeerNetInfoResult);
|
REG_FUNC(sceNp, sceNpSignalingGetPeerNetInfoResult);
|
||||||
REG_FUNC(sceNp, sceNpUtilCmpNpId);
|
REG_FUNC(sceNp, sceNpUtilCmpNpId);
|
||||||
REG_FUNC(sceNp, sceNpUtilCmpNpIdInOrder);
|
REG_FUNC(sceNp, sceNpUtilCmpNpIdInOrder);
|
||||||
|
REG_FUNC(sceNp, sceNpUtilCmpOnlineId); // 0x8C760B52
|
||||||
|
REG_FUNC(sceNp, sceNpUtilGetPlatformType); // 0xC611029A
|
||||||
|
REG_FUNC(sceNp, sceNpUtilSetPlatformType); // 0xAFC62605
|
||||||
REG_FUNC(sceNp, _sceNpSysutilClientMalloc);
|
REG_FUNC(sceNp, _sceNpSysutilClientMalloc);
|
||||||
REG_FUNC(sceNp, _sceNpSysutilClientFree);
|
REG_FUNC(sceNp, _sceNpSysutilClientFree);
|
||||||
REG_FUNC(sceNp, _Z33_sce_np_sysutil_send_empty_packetiPN16sysutil_cxmlutil11FixedMemoryEPKcS3_);
|
REG_FUNC(sceNp, _Z33_sce_np_sysutil_send_empty_packetiPN16sysutil_cxmlutil11FixedMemoryEPKcS3_);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue