#include "stdafx.h" #include "Emu/System.h" #include "Emu/PSP2/ARMv7Module.h" #include "sceNpMatching.h" logs::channel sceNpMatching("sceNpMatching"); // Functions s32 sceNpMatching2Init(u32 poolSize, s32 threadPriority, s32 cpuAffinityMask, u32 threadStackSize) { fmt::throw_exception("Unimplemented" HERE); } s32 sceNpMatching2Term() { fmt::throw_exception("Unimplemented" HERE); } s32 sceNpMatching2CreateContext( vm::cptr npId, vm::cptr commId, vm::cptr passPhrase, vm::ptr ctxId) { fmt::throw_exception("Unimplemented" HERE); } s32 sceNpMatching2DestroyContext(u16 ctxId) { fmt::throw_exception("Unimplemented" HERE); } s32 sceNpMatching2ContextStart(u16 ctxId, u64 timeout) { fmt::throw_exception("Unimplemented" HERE); } s32 sceNpMatching2AbortContextStart(u16 ctxId) { fmt::throw_exception("Unimplemented" HERE); } s32 sceNpMatching2ContextStop(u16 ctxId) { fmt::throw_exception("Unimplemented" HERE); } s32 sceNpMatching2SetDefaultRequestOptParam(u16 ctxId, vm::cptr optParam) { fmt::throw_exception("Unimplemented" HERE); } s32 sceNpMatching2RegisterRoomEventCallback(u16 ctxId, vm::ptr cbFunc, vm::ptr cbFuncArg) { fmt::throw_exception("Unimplemented" HERE); } s32 sceNpMatching2RegisterRoomMessageCallback(u16 ctxId, vm::ptr cbFunc, vm::ptr cbFuncArg) { fmt::throw_exception("Unimplemented" HERE); } s32 sceNpMatching2RegisterSignalingCallback(u16 ctxId, vm::ptr cbFunc, vm::ptr cbFuncArg) { fmt::throw_exception("Unimplemented" HERE); } s32 sceNpMatching2RegisterContextCallback(vm::ptr cbFunc, vm::ptr cbFuncArg) { fmt::throw_exception("Unimplemented" HERE); } s32 sceNpMatching2AbortRequest(u16 ctxId, u32 reqId) { fmt::throw_exception("Unimplemented" HERE); } s32 sceNpMatching2GetMemoryInfo(vm::ptr memInfo) { fmt::throw_exception("Unimplemented" HERE); } s32 sceNpMatching2GetServerLocal(u16 ctxId, vm::ptr server) { fmt::throw_exception("Unimplemented" HERE); } s32 sceNpMatching2GetWorldInfoList( u16 ctxId, vm::cptr reqParam, vm::cptr optParam, vm::ptr assignedReqId) { fmt::throw_exception("Unimplemented" HERE); } s32 sceNpMatching2CreateJoinRoom( u16 ctxId, vm::cptr reqParam, vm::cptr optParam, vm::ptr assignedReqId) { fmt::throw_exception("Unimplemented" HERE); } s32 sceNpMatching2SearchRoom( u16 ctxId, vm::cptr reqParam, vm::cptr optParam, vm::ptr assignedReqId) { fmt::throw_exception("Unimplemented" HERE); } s32 sceNpMatching2JoinRoom( u16 ctxId, vm::cptr reqParam, vm::cptr optParam, vm::ptr assignedReqId) { fmt::throw_exception("Unimplemented" HERE); } s32 sceNpMatching2LeaveRoom( u16 ctxId, vm::cptr reqParam, vm::cptr optParam, vm::ptr assignedReqId) { fmt::throw_exception("Unimplemented" HERE); } s32 sceNpMatching2GetSignalingOptParamLocal( u16 ctxId, u64 roomId, vm::ptr signalingOptParam) { fmt::throw_exception("Unimplemented" HERE); } s32 sceNpMatching2SetRoomDataExternal( u16 ctxId, vm::cptr reqParam, vm::cptr optParam, vm::ptr assignedReqId) { fmt::throw_exception("Unimplemented" HERE); } s32 sceNpMatching2KickoutRoomMember( u16 ctxId, vm::cptr reqParam, vm::cptr optParam, vm::ptr assignedReqId) { fmt::throw_exception("Unimplemented" HERE); } s32 sceNpMatching2SendRoomChatMessage( u16 ctxId, vm::cptr reqParam, vm::cptr optParam, vm::ptr assignedReqId) { fmt::throw_exception("Unimplemented" HERE); } s32 sceNpMatching2SendRoomMessage( u16 ctxId, vm::cptr reqParam, vm::cptr optParam, vm::ptr assignedReqId) { fmt::throw_exception("Unimplemented" HERE); } s32 sceNpMatching2SignalingGetConnectionStatus( u16 ctxId, u64 roomId, u16 memberId, vm::ptr connStatus, vm::ptr peerAddr, vm::ptr peerPort) { fmt::throw_exception("Unimplemented" HERE); } s32 sceNpMatching2SignalingGetConnectionInfo( u16 ctxId, u64 roomId, u16 memberId, s32 code, vm::ptr info) { fmt::throw_exception("Unimplemented" HERE); } s32 sceNpMatching2SignalingGetLocalNetInfo(vm::ptr netinfo) { fmt::throw_exception("Unimplemented" HERE); } s32 sceNpMatching2SignalingGetPeerNetInfo( u16 ctxId, u64 roomId, u16 memberId, vm::ptr reqId) { fmt::throw_exception("Unimplemented" HERE); } s32 sceNpMatching2SignalingCancelPeerNetInfo( u16 ctxId, u32 reqId) { fmt::throw_exception("Unimplemented" HERE); } s32 sceNpMatching2SignalingGetPeerNetInfoResult( u16 ctxId, u32 reqId, vm::ptr netinfo) { fmt::throw_exception("Unimplemented" HERE); } #define REG_FUNC(nid, name) REG_FNID(SceNpMatching2, nid, name) DECLARE(arm_module_manager::SceNpMatching)("SceNpMatching2", []() { REG_FUNC(0xEBB1FE74, sceNpMatching2Init); REG_FUNC(0x0124641C, sceNpMatching2Term); REG_FUNC(0xADF578E1, sceNpMatching2CreateContext); REG_FUNC(0x368AA759, sceNpMatching2DestroyContext); REG_FUNC(0xBB2E7559, sceNpMatching2ContextStart); REG_FUNC(0xF2847E3B, sceNpMatching2AbortContextStart); REG_FUNC(0x506454DE, sceNpMatching2ContextStop); REG_FUNC(0xF3A43C50, sceNpMatching2SetDefaultRequestOptParam); REG_FUNC(0xF486991B, sceNpMatching2RegisterRoomEventCallback); REG_FUNC(0xFA51949B, sceNpMatching2RegisterRoomMessageCallback); REG_FUNC(0xF9E35566, sceNpMatching2RegisterContextCallback); REG_FUNC(0x74EB6CE9, sceNpMatching2AbortRequest); REG_FUNC(0x7BD39E50, sceNpMatching2GetMemoryInfo); REG_FUNC(0x65C0FEED, sceNpMatching2GetServerLocal); REG_FUNC(0xC086B560, sceNpMatching2GetWorldInfoList); REG_FUNC(0x818A9499, sceNpMatching2CreateJoinRoom); REG_FUNC(0xD48BAF13, sceNpMatching2SearchRoom); REG_FUNC(0x33F7D5AE, sceNpMatching2JoinRoom); REG_FUNC(0xC8B0C9EE, sceNpMatching2LeaveRoom); REG_FUNC(0x495D2B46, sceNpMatching2GetSignalingOptParamLocal); REG_FUNC(0xE0BE0510, sceNpMatching2SendRoomChatMessage); REG_FUNC(0x7B908D99, sceNpMatching2SendRoomMessage); REG_FUNC(0x4E4C55BD, sceNpMatching2SignalingGetConnectionStatus); REG_FUNC(0x20598618, sceNpMatching2SignalingGetConnectionInfo); REG_FUNC(0x79310806, sceNpMatching2SignalingGetLocalNetInfo); REG_FUNC(0xF0CB1DD3, sceNpMatching2SignalingGetPeerNetInfo); REG_FUNC(0xADCD102C, sceNpMatching2SignalingCancelPeerNetInfo); REG_FUNC(0xFDC7B2C9, sceNpMatching2SignalingGetPeerNetInfoResult); REG_FUNC(0x1C60BC5B, sceNpMatching2RegisterSignalingCallback); REG_FUNC(0x8F88AC7E, sceNpMatching2SetRoomDataExternal); REG_FUNC(0xA8021394, sceNpMatching2KickoutRoomMember); });