mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-14 18:58:36 +12:00
Add sceNp2* functions
This commit is contained in:
parent
9d8fa28dd9
commit
ce7b55871b
1 changed files with 27 additions and 0 deletions
|
@ -445,6 +445,29 @@ s32 sceNpMatching2RegisterRoomMessageCallback()
|
||||||
return CELL_OK;
|
return CELL_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
s32 sceNpMatching2SignalingCancelPeerNetInfo()
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED_FUNC(sceNp2);
|
||||||
|
return CELL_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
s32 sceNpMatching2SignalingGetLocalNetInfo()
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED_FUNC(sceNp2);
|
||||||
|
return CELL_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
s32 sceNpMatching2SignalingGetPeerNetInfo()
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED_FUNC(sceNp2);
|
||||||
|
return CELL_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
s32 sceNpMatching2SignalingGetPeerNetInfoResult()
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED_FUNC(sceNp2);
|
||||||
|
return CELL_OK;
|
||||||
|
}
|
||||||
|
|
||||||
DECLARE(ppu_module_manager::sceNp2)("sceNp2", []()
|
DECLARE(ppu_module_manager::sceNp2)("sceNp2", []()
|
||||||
{
|
{
|
||||||
|
@ -517,4 +540,8 @@ DECLARE(ppu_module_manager::sceNp2)("sceNp2", []()
|
||||||
REG_FUNC(sceNp2, sceNpMatching2Init2);
|
REG_FUNC(sceNp2, sceNpMatching2Init2);
|
||||||
REG_FUNC(sceNp2, sceNpMatching2SetLobbyMemberDataInternal);
|
REG_FUNC(sceNp2, sceNpMatching2SetLobbyMemberDataInternal);
|
||||||
REG_FUNC(sceNp2, sceNpMatching2RegisterRoomMessageCallback);
|
REG_FUNC(sceNp2, sceNpMatching2RegisterRoomMessageCallback);
|
||||||
|
REG_FUNC(sceNp2, sceNpMatching2SignalingCancelPeerNetInfo);
|
||||||
|
REG_FUNC(sceNp2, sceNpMatching2SignalingGetLocalNetInfo);
|
||||||
|
REG_FUNC(sceNp2, sceNpMatching2SignalingGetPeerNetInfo);
|
||||||
|
REG_FUNC(sceNp2, sceNpMatching2SignalingGetPeerNetInfoResult);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue