mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-08-09 09:39:44 +00:00
hle: Add some sceNpMatchingInt functions
This commit is contained in:
parent
32ae7e466c
commit
d6bf18eabc
1 changed files with 35 additions and 2 deletions
|
@ -2,16 +2,26 @@
|
||||||
#include "Emu/System.h"
|
#include "Emu/System.h"
|
||||||
#include "Emu/Cell/PPUModule.h"
|
#include "Emu/Cell/PPUModule.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
LOG_CHANNEL(sceNpMatchingInt);
|
LOG_CHANNEL(sceNpMatchingInt);
|
||||||
|
|
||||||
|
s32 sceNpMatchingCancelRequest()
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED_FUNC(sceNpMatchingInt);
|
||||||
|
return CELL_OK;
|
||||||
|
}
|
||||||
|
|
||||||
s32 sceNpMatchingGetRoomMemberList()
|
s32 sceNpMatchingGetRoomMemberList()
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(sceNpMatchingInt);
|
UNIMPLEMENTED_FUNC(sceNpMatchingInt);
|
||||||
return CELL_OK;
|
return CELL_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
s32 sceNpMatchingJoinRoomWithoutGUI()
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED_FUNC(sceNpMatchingInt);
|
||||||
|
return CELL_OK;
|
||||||
|
}
|
||||||
|
|
||||||
// Parameter "unknown" added to distinguish this function
|
// Parameter "unknown" added to distinguish this function
|
||||||
// from the one in sceNp.cpp which has the same name
|
// from the one in sceNp.cpp which has the same name
|
||||||
s32 sceNpMatchingJoinRoomGUI(vm::ptr<void> unknown)
|
s32 sceNpMatchingJoinRoomGUI(vm::ptr<void> unknown)
|
||||||
|
@ -20,22 +30,45 @@ s32 sceNpMatchingJoinRoomGUI(vm::ptr<void> unknown)
|
||||||
return CELL_OK;
|
return CELL_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
s32 sceNpMatchingGetRoomListWithoutGUI()
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED_FUNC(sceNpMatchingInt);
|
||||||
|
return CELL_OK;
|
||||||
|
}
|
||||||
|
|
||||||
s32 sceNpMatchingGetRoomListGUI()
|
s32 sceNpMatchingGetRoomListGUI()
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(sceNpMatchingInt);
|
UNIMPLEMENTED_FUNC(sceNpMatchingInt);
|
||||||
return CELL_OK;
|
return CELL_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
s32 sceNpMatchingCancelRequestGUI()
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED_FUNC(sceNpMatchingInt);
|
||||||
|
return CELL_OK;
|
||||||
|
}
|
||||||
|
|
||||||
s32 sceNpMatchingSendRoomMessage()
|
s32 sceNpMatchingSendRoomMessage()
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(sceNpMatchingInt);
|
UNIMPLEMENTED_FUNC(sceNpMatchingInt);
|
||||||
return CELL_OK;
|
return CELL_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
s32 sceNpMatchingCreateRoomWithoutGUI()
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED_FUNC(sceNpMatchingInt);
|
||||||
|
return CELL_OK;
|
||||||
|
}
|
||||||
|
|
||||||
DECLARE(ppu_module_manager::sceNpMatchingInt)("sceNpMatchingInt", []()
|
DECLARE(ppu_module_manager::sceNpMatchingInt)("sceNpMatchingInt", []()
|
||||||
{
|
{
|
||||||
|
REG_FUNC(sceNpMatchingInt, sceNpMatchingCancelRequest);
|
||||||
REG_FUNC(sceNpMatchingInt, sceNpMatchingGetRoomMemberList);
|
REG_FUNC(sceNpMatchingInt, sceNpMatchingGetRoomMemberList);
|
||||||
|
REG_FUNC(sceNpMatchingInt, sceNpMatchingJoinRoomWithoutGUI);
|
||||||
REG_FUNC(sceNpMatchingInt, sceNpMatchingJoinRoomGUI);
|
REG_FUNC(sceNpMatchingInt, sceNpMatchingJoinRoomGUI);
|
||||||
|
REG_FUNC(sceNpMatchingInt, sceNpMatchingGetRoomListWithoutGUI);
|
||||||
REG_FUNC(sceNpMatchingInt, sceNpMatchingGetRoomListGUI);
|
REG_FUNC(sceNpMatchingInt, sceNpMatchingGetRoomListGUI);
|
||||||
|
REG_FUNC(sceNpMatchingInt, sceNpMatchingCancelRequestGUI);
|
||||||
REG_FUNC(sceNpMatchingInt, sceNpMatchingSendRoomMessage);
|
REG_FUNC(sceNpMatchingInt, sceNpMatchingSendRoomMessage);
|
||||||
|
REG_FUNC(sceNpMatchingInt, sceNpMatchingCreateRoomWithoutGUI);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue