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
|
|
@ -8,52 +8,52 @@ logs::channel sceNpScore("sceNpScore", logs::level::notice);
|
|||
|
||||
s32 sceNpScoreInit(s32 threadPriority, s32 cpuAffinityMask, vm::ptr<void> option)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpScoreTerm(ARMv7Thread&)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpScoreCreateTitleCtx(vm::cptr<SceNpCommunicationId> titleId, vm::cptr<SceNpCommunicationPassphrase> passphrase, vm::cptr<SceNpId> selfNpId)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpScoreDeleteTitleCtx(s32 titleCtxId)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpScoreCreateRequest(s32 titleCtxId)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpScoreDeleteRequest(s32 reqId)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpScoreAbortRequest(s32 reqId)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpScoreSetTimeout(s32 id, s32 resolveRetry, s32 resolveTimeout, s32 connTimeout, s32 sendTimeout, s32 recvTimeout)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpScoreSetPlayerCharacterId(s32 id, s32 pcId)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpScoreGetBoardInfo(s32 reqId, u32 boardId, vm::ptr<SceNpScoreBoardInfo> boardInfo, vm::ptr<void> option)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpScoreRecordScore(
|
||||
|
|
@ -66,7 +66,7 @@ s32 sceNpScoreRecordScore(
|
|||
vm::cptr<u64> compareDate,
|
||||
vm::ptr<void> option)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpScoreRecordGameData(
|
||||
|
|
@ -78,7 +78,7 @@ s32 sceNpScoreRecordGameData(
|
|||
vm::cptr<void> data,
|
||||
vm::ptr<void> option)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpScoreGetGameData(
|
||||
|
|
@ -90,7 +90,7 @@ s32 sceNpScoreGetGameData(
|
|||
vm::ptr<void> data,
|
||||
vm::ptr<void> option)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpScoreGetRankingByNpId(
|
||||
|
|
@ -109,7 +109,7 @@ s32 sceNpScoreGetRankingByNpId(
|
|||
vm::ptr<u32> totalRecord,
|
||||
vm::ptr<void> option)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpScoreGetRankingByRange(
|
||||
|
|
@ -127,7 +127,7 @@ s32 sceNpScoreGetRankingByRange(
|
|||
vm::ptr<u32> totalRecord,
|
||||
vm::ptr<void> option)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -147,32 +147,32 @@ s32 sceNpScoreGetRankingByNpIdPcId(
|
|||
vm::ptr<u32> totalRecord,
|
||||
vm::ptr<void> option)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpScoreCensorComment(s32 reqId, vm::cptr<char> comment, vm::ptr<void> option)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpScoreSanitizeComment(s32 reqId, vm::cptr<char> comment, vm::ptr<char> sanitizedComment, vm::ptr<void> option)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpScoreWaitAsync(s32 id, vm::ptr<s32> result)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpScorePollAsync(s32 reqId, vm::ptr<s32> result)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpScoreGetBoardInfoAsync(s32 reqId, u32 boardId, vm::ptr<SceNpScoreBoardInfo> boardInfo, vm::ptr<void> option)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpScoreRecordScoreAsync(
|
||||
|
|
@ -185,7 +185,7 @@ s32 sceNpScoreRecordScoreAsync(
|
|||
vm::cptr<u64> compareDate,
|
||||
vm::ptr<void> option)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpScoreRecordGameDataAsync(
|
||||
|
|
@ -197,7 +197,7 @@ s32 sceNpScoreRecordGameDataAsync(
|
|||
vm::cptr<void> data,
|
||||
vm::ptr<void> option)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpScoreGetGameDataAsync(
|
||||
|
|
@ -209,7 +209,7 @@ s32 sceNpScoreGetGameDataAsync(
|
|||
vm::ptr<void> data,
|
||||
vm::ptr<void> option)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpScoreGetRankingByNpIdAsync(
|
||||
|
|
@ -228,7 +228,7 @@ s32 sceNpScoreGetRankingByNpIdAsync(
|
|||
vm::ptr<u32> totalRecord,
|
||||
vm::ptr<void> option)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpScoreGetRankingByRangeAsync(
|
||||
|
|
@ -246,7 +246,7 @@ s32 sceNpScoreGetRankingByRangeAsync(
|
|||
vm::ptr<u32> totalRecord,
|
||||
vm::ptr<void> option)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpScoreGetRankingByNpIdPcIdAsync(
|
||||
|
|
@ -265,17 +265,17 @@ s32 sceNpScoreGetRankingByNpIdPcIdAsync(
|
|||
vm::ptr<u32> totalRecord,
|
||||
vm::ptr<void> option)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpScoreCensorCommentAsync(s32 reqId, vm::cptr<char> comment, vm::ptr<void> option)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpScoreSanitizeCommentAsync(s32 reqId, vm::cptr<char> comment, vm::ptr<char> sanitizedComment, vm::ptr<void> option)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
#define REG_FUNC(nid, name) REG_FNID(SceNpScore, nid, name)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue