rpcsx/rpcs3/Emu/Cell/Modules/sceNpMatchingInt.cpp

93 lines
2.2 KiB
C++
Raw Normal View History

2020-12-05 13:08:24 +01:00
#include "stdafx.h"
2018-02-03 14:07:41 +01:00
#include "Emu/Cell/PPUModule.h"
2021-03-05 20:05:37 +01:00
// Temporarily
#ifndef _MSC_VER
#pragma GCC diagnostic ignored "-Wunused-parameter"
#endif
LOG_CHANNEL(sceNpMatchingInt);
2018-02-03 14:07:41 +01:00
2020-07-16 12:14:57 +02:00
error_code sceNpMatchingCancelRequest()
{
UNIMPLEMENTED_FUNC(sceNpMatchingInt);
return CELL_OK;
}
2020-07-16 12:14:57 +02:00
error_code sceNpMatchingGetRoomMemberList()
2018-02-03 14:07:41 +01:00
{
UNIMPLEMENTED_FUNC(sceNpMatchingInt);
return CELL_OK;
}
2020-07-16 12:14:57 +02:00
error_code 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
2020-07-16 12:14:57 +02:00
error_code sceNpMatchingJoinRoomGUI(vm::ptr<void> unknown)
2018-02-03 14:07:41 +01:00
{
UNIMPLEMENTED_FUNC(sceNpMatchingInt);
return CELL_OK;
}
2020-07-16 12:14:57 +02:00
error_code sceNpMatchingSetRoomInfoNoLimit(vm::ptr<void> unknown)
{
UNIMPLEMENTED_FUNC(sceNpMatchingInt);
return CELL_OK;
}
2020-07-16 12:14:57 +02:00
error_code sceNpMatchingGetRoomListWithoutGUI()
{
UNIMPLEMENTED_FUNC(sceNpMatchingInt);
return CELL_OK;
}
2020-07-16 12:14:57 +02:00
error_code sceNpMatchingGetRoomListGUI()
2018-02-03 14:07:41 +01:00
{
UNIMPLEMENTED_FUNC(sceNpMatchingInt);
return CELL_OK;
}
2020-07-16 12:14:57 +02:00
error_code sceNpMatchingGetRoomInfoNoLimit(vm::ptr<void> unknown)
{
UNIMPLEMENTED_FUNC(sceNpMatchingInt);
return CELL_OK;
}
2020-07-16 12:14:57 +02:00
error_code sceNpMatchingCancelRequestGUI()
{
UNIMPLEMENTED_FUNC(sceNpMatchingInt);
return CELL_OK;
}
2020-07-16 12:14:57 +02:00
error_code sceNpMatchingSendRoomMessage()
2018-02-03 14:07:41 +01:00
{
UNIMPLEMENTED_FUNC(sceNpMatchingInt);
return CELL_OK;
}
2020-07-16 12:14:57 +02:00
error_code sceNpMatchingCreateRoomWithoutGUI()
{
UNIMPLEMENTED_FUNC(sceNpMatchingInt);
return CELL_OK;
}
2018-02-03 14:07:41 +01:00
DECLARE(ppu_module_manager::sceNpMatchingInt)("sceNpMatchingInt", []()
{
REG_FUNC(sceNpMatchingInt, sceNpMatchingCancelRequest);
2018-02-03 14:07:41 +01:00
REG_FUNC(sceNpMatchingInt, sceNpMatchingGetRoomMemberList);
REG_FUNC(sceNpMatchingInt, sceNpMatchingJoinRoomWithoutGUI);
2018-02-03 14:07:41 +01:00
REG_FUNC(sceNpMatchingInt, sceNpMatchingJoinRoomGUI);
REG_FUNC(sceNpMatchingInt, sceNpMatchingSetRoomInfoNoLimit);
REG_FUNC(sceNpMatchingInt, sceNpMatchingGetRoomListWithoutGUI);
2018-02-03 14:07:41 +01:00
REG_FUNC(sceNpMatchingInt, sceNpMatchingGetRoomListGUI);
REG_FUNC(sceNpMatchingInt, sceNpMatchingGetRoomInfoNoLimit);
REG_FUNC(sceNpMatchingInt, sceNpMatchingCancelRequestGUI);
2018-02-03 14:07:41 +01:00
REG_FUNC(sceNpMatchingInt, sceNpMatchingSendRoomMessage);
REG_FUNC(sceNpMatchingInt, sceNpMatchingCreateRoomWithoutGUI);
2018-02-03 14:07:41 +01:00
});