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,62 +8,62 @@ logs::channel sceNpUtility("sceNpUtility", logs::level::notice);
|
|||
|
||||
s32 sceNpLookupInit(s32 usesAsync, s32 threadPriority, s32 cpuAffinityMask, vm::ptr<void> option)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpLookupTerm(ARMv7Thread&)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpLookupCreateTitleCtx(vm::cptr<SceNpCommunicationId> titleId, vm::cptr<SceNpId> selfNpId)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpLookupDeleteTitleCtx(s32 titleCtxId)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpLookupCreateRequest(s32 titleCtxId)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpLookupDeleteRequest(s32 reqId)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpLookupAbortRequest(s32 reqId)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpLookupSetTimeout(s32 id, s32 resolveRetry, u32 resolveTimeout, u32 connTimeout, u32 sendTimeout, u32 recvTimeout)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpLookupWaitAsync(s32 reqId, vm::ptr<s32> result)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpLookupPollAsync(s32 reqId, vm::ptr<s32> result)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpLookupNpId(s32 reqId, vm::cptr<SceNpOnlineId> onlineId, vm::ptr<SceNpId> npId, vm::ptr<void> option)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpLookupNpIdAsync(s32 reqId, vm::cptr<SceNpOnlineId> onlineId, vm::ptr<SceNpId> npId, vm::ptr<void> option)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpLookupUserProfile(
|
||||
|
|
@ -79,7 +79,7 @@ s32 sceNpLookupUserProfile(
|
|||
vm::ptr<u32> avatarImageDataSize,
|
||||
vm::ptr<void> option)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpLookupUserProfileAsync(
|
||||
|
|
@ -95,37 +95,37 @@ s32 sceNpLookupUserProfileAsync(
|
|||
vm::ptr<u32> avatarImageDataSize,
|
||||
vm::ptr<void> option)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpLookupAvatarImage(s32 reqId, vm::cptr<SceNpAvatarUrl> avatarUrl, vm::ptr<SceNpAvatarImage> avatarImage, vm::ptr<void> option)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpLookupAvatarImageAsync(s32 reqId, vm::cptr<SceNpAvatarUrl> avatarUrl, vm::ptr<SceNpAvatarImage> avatarImage, vm::ptr<void> option)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpBandwidthTestInitStart(s32 initPriority, s32 cpuAffinityMask)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpBandwidthTestGetStatus()
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpBandwidthTestShutdown(vm::ptr<SceNpBandwidthTestResult> result)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceNpBandwidthTestAbort()
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
#define REG_FUNC(nid, name) REG_FNID(SceNpUtility, nid, name)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue