2018-02-03 14:07:41 +01:00
|
|
|
#include "stdafx.h"
|
|
|
|
|
#include "Emu/System.h"
|
|
|
|
|
#include "Emu/Cell/PPUModule.h"
|
|
|
|
|
|
2018-08-25 14:39:00 +02:00
|
|
|
LOG_CHANNEL(sceNpMatchingInt);
|
2018-02-03 14:07:41 +01:00
|
|
|
|
2019-03-24 09:54:44 +01:00
|
|
|
s32 sceNpMatchingCancelRequest()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpMatchingInt);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-03 14:07:41 +01:00
|
|
|
s32 sceNpMatchingGetRoomMemberList()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpMatchingInt);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-24 09:54:44 +01:00
|
|
|
s32 sceNpMatchingJoinRoomWithoutGUI()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpMatchingInt);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-03 14:07:41 +01:00
|
|
|
// Parameter "unknown" added to distinguish this function
|
|
|
|
|
// from the one in sceNp.cpp which has the same name
|
|
|
|
|
s32 sceNpMatchingJoinRoomGUI(vm::ptr<void> unknown)
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpMatchingInt);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-24 09:54:44 +01:00
|
|
|
s32 sceNpMatchingGetRoomListWithoutGUI()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpMatchingInt);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-03 14:07:41 +01:00
|
|
|
s32 sceNpMatchingGetRoomListGUI()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpMatchingInt);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-24 09:54:44 +01:00
|
|
|
s32 sceNpMatchingCancelRequestGUI()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpMatchingInt);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-03 14:07:41 +01:00
|
|
|
s32 sceNpMatchingSendRoomMessage()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpMatchingInt);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-24 09:54:44 +01:00
|
|
|
s32 sceNpMatchingCreateRoomWithoutGUI()
|
|
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(sceNpMatchingInt);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-03 14:07:41 +01:00
|
|
|
DECLARE(ppu_module_manager::sceNpMatchingInt)("sceNpMatchingInt", []()
|
|
|
|
|
{
|
2019-03-24 09:54:44 +01:00
|
|
|
REG_FUNC(sceNpMatchingInt, sceNpMatchingCancelRequest);
|
2018-02-03 14:07:41 +01:00
|
|
|
REG_FUNC(sceNpMatchingInt, sceNpMatchingGetRoomMemberList);
|
2019-03-24 09:54:44 +01:00
|
|
|
REG_FUNC(sceNpMatchingInt, sceNpMatchingJoinRoomWithoutGUI);
|
2018-02-03 14:07:41 +01:00
|
|
|
REG_FUNC(sceNpMatchingInt, sceNpMatchingJoinRoomGUI);
|
2019-03-24 09:54:44 +01:00
|
|
|
REG_FUNC(sceNpMatchingInt, sceNpMatchingGetRoomListWithoutGUI);
|
2018-02-03 14:07:41 +01:00
|
|
|
REG_FUNC(sceNpMatchingInt, sceNpMatchingGetRoomListGUI);
|
2019-03-24 09:54:44 +01:00
|
|
|
REG_FUNC(sceNpMatchingInt, sceNpMatchingCancelRequestGUI);
|
2018-02-03 14:07:41 +01:00
|
|
|
REG_FUNC(sceNpMatchingInt, sceNpMatchingSendRoomMessage);
|
2019-03-24 09:54:44 +01:00
|
|
|
REG_FUNC(sceNpMatchingInt, sceNpMatchingCreateRoomWithoutGUI);
|
2018-02-03 14:07:41 +01:00
|
|
|
});
|