mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 15:05:59 +00:00
EXCEPTION macro removed
fmt::throw_exception<> implemented ::narrow improved Minor fixes
This commit is contained in:
parent
46735d6b3d
commit
a7e808b35b
198 changed files with 3025 additions and 2956 deletions
|
|
@ -10,12 +10,12 @@ logs::channel sceNpMatching("sceNpMatching", logs::level::notice);
|
|||
|
||||
s32 sceNpMatching2Init(u32 poolSize, s32 threadPriority, s32 cpuAffinityMask, u32 threadStackSize)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpMatching2Term()
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpMatching2CreateContext(
|
||||
|
|
@ -24,67 +24,67 @@ s32 sceNpMatching2CreateContext(
|
|||
vm::cptr<SceNpCommunicationPassphrase> passPhrase,
|
||||
vm::ptr<u16> ctxId)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpMatching2DestroyContext(u16 ctxId)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpMatching2ContextStart(u16 ctxId, u64 timeout)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpMatching2AbortContextStart(u16 ctxId)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpMatching2ContextStop(u16 ctxId)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpMatching2SetDefaultRequestOptParam(u16 ctxId, vm::cptr<SceNpMatching2RequestOptParam> optParam)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpMatching2RegisterRoomEventCallback(u16 ctxId, vm::ptr<SceNpMatching2RoomEventCallback> cbFunc, vm::ptr<void> cbFuncArg)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpMatching2RegisterRoomMessageCallback(u16 ctxId, vm::ptr<SceNpMatching2RoomMessageCallback> cbFunc, vm::ptr<void> cbFuncArg)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpMatching2RegisterSignalingCallback(u16 ctxId, vm::ptr<SceNpMatching2SignalingCallback> cbFunc, vm::ptr<void> cbFuncArg)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpMatching2RegisterContextCallback(vm::ptr<SceNpMatching2ContextCallback> cbFunc, vm::ptr<void> cbFuncArg)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpMatching2AbortRequest(u16 ctxId, u32 reqId)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpMatching2GetMemoryInfo(vm::ptr<SceNpMatching2MemoryInfo> memInfo)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpMatching2GetServerLocal(u16 ctxId, vm::ptr<SceNpMatching2Server> server)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpMatching2GetWorldInfoList(
|
||||
|
|
@ -93,7 +93,7 @@ s32 sceNpMatching2GetWorldInfoList(
|
|||
vm::cptr<SceNpMatching2RequestOptParam> optParam,
|
||||
vm::ptr<u32> assignedReqId)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpMatching2CreateJoinRoom(
|
||||
|
|
@ -102,7 +102,7 @@ s32 sceNpMatching2CreateJoinRoom(
|
|||
vm::cptr<SceNpMatching2RequestOptParam> optParam,
|
||||
vm::ptr<u32> assignedReqId)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpMatching2SearchRoom(
|
||||
|
|
@ -111,7 +111,7 @@ s32 sceNpMatching2SearchRoom(
|
|||
vm::cptr<SceNpMatching2RequestOptParam> optParam,
|
||||
vm::ptr<u32> assignedReqId)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpMatching2JoinRoom(
|
||||
|
|
@ -120,7 +120,7 @@ s32 sceNpMatching2JoinRoom(
|
|||
vm::cptr<SceNpMatching2RequestOptParam> optParam,
|
||||
vm::ptr<u32> assignedReqId)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpMatching2LeaveRoom(
|
||||
|
|
@ -129,7 +129,7 @@ s32 sceNpMatching2LeaveRoom(
|
|||
vm::cptr<SceNpMatching2RequestOptParam> optParam,
|
||||
vm::ptr<u32> assignedReqId)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpMatching2GetSignalingOptParamLocal(
|
||||
|
|
@ -137,7 +137,7 @@ s32 sceNpMatching2GetSignalingOptParamLocal(
|
|||
u64 roomId,
|
||||
vm::ptr<SceNpMatching2SignalingOptParam> signalingOptParam)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpMatching2SetRoomDataExternal(
|
||||
|
|
@ -146,7 +146,7 @@ s32 sceNpMatching2SetRoomDataExternal(
|
|||
vm::cptr<SceNpMatching2RequestOptParam> optParam,
|
||||
vm::ptr<u32> assignedReqId)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpMatching2KickoutRoomMember(
|
||||
|
|
@ -155,7 +155,7 @@ s32 sceNpMatching2KickoutRoomMember(
|
|||
vm::cptr<SceNpMatching2RequestOptParam> optParam,
|
||||
vm::ptr<u32> assignedReqId)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpMatching2SendRoomChatMessage(
|
||||
|
|
@ -164,7 +164,7 @@ s32 sceNpMatching2SendRoomChatMessage(
|
|||
vm::cptr<SceNpMatching2RequestOptParam> optParam,
|
||||
vm::ptr<u32> assignedReqId)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpMatching2SendRoomMessage(
|
||||
|
|
@ -173,7 +173,7 @@ s32 sceNpMatching2SendRoomMessage(
|
|||
vm::cptr<SceNpMatching2RequestOptParam> optParam,
|
||||
vm::ptr<u32> assignedReqId)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpMatching2SignalingGetConnectionStatus(
|
||||
|
|
@ -184,7 +184,7 @@ s32 sceNpMatching2SignalingGetConnectionStatus(
|
|||
vm::ptr<SceNetInAddr> peerAddr,
|
||||
vm::ptr<u16> peerPort)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpMatching2SignalingGetConnectionInfo(
|
||||
|
|
@ -194,12 +194,12 @@ s32 sceNpMatching2SignalingGetConnectionInfo(
|
|||
s32 code,
|
||||
vm::ptr<SceNpMatching2SignalingConnectionInfo> info)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpMatching2SignalingGetLocalNetInfo(vm::ptr<SceNpMatching2SignalingNetInfo> netinfo)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpMatching2SignalingGetPeerNetInfo(
|
||||
|
|
@ -208,14 +208,14 @@ s32 sceNpMatching2SignalingGetPeerNetInfo(
|
|||
u16 memberId,
|
||||
vm::ptr<u32> reqId)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpMatching2SignalingCancelPeerNetInfo(
|
||||
u16 ctxId,
|
||||
u32 reqId)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpMatching2SignalingGetPeerNetInfoResult(
|
||||
|
|
@ -223,7 +223,7 @@ s32 sceNpMatching2SignalingGetPeerNetInfoResult(
|
|||
u32 reqId,
|
||||
vm::ptr<SceNpMatching2SignalingNetInfo> netinfo)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
#define REG_FUNC(nid, name) REG_FNID(SceNpMatching2, nid, name)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue