mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-07 15:36:26 +00:00
PSV modules refactoring
This commit is contained in:
parent
8229c0ed3d
commit
bc9481db1b
129 changed files with 5000 additions and 4588 deletions
|
|
@ -2,19 +2,9 @@
|
|||
#include "Emu/System.h"
|
||||
#include "Emu/ARMv7/PSVFuncList.h"
|
||||
|
||||
#include "sceNpCommon.h"
|
||||
#include "sceNpUtility.h"
|
||||
|
||||
extern psv_log_base sceNpUtility;
|
||||
|
||||
struct SceNpBandwidthTestResult
|
||||
{
|
||||
double uploadBps;
|
||||
double downloadBps;
|
||||
s32 result;
|
||||
char padding[4];
|
||||
};
|
||||
|
||||
s32 sceNpLookupInit(s32 usesAsync, s32 threadPriority, s32 cpuAffinityMask, vm::psv::ptr<void> option)
|
||||
s32 sceNpLookupInit(s32 usesAsync, s32 threadPriority, s32 cpuAffinityMask, vm::ptr<void> option)
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
}
|
||||
|
|
@ -24,7 +14,7 @@ s32 sceNpLookupTerm(ARMv7Context&)
|
|||
throw __FUNCTION__;
|
||||
}
|
||||
|
||||
s32 sceNpLookupCreateTitleCtx(vm::psv::ptr<const SceNpCommunicationId> titleId, vm::psv::ptr<const SceNpId> selfNpId)
|
||||
s32 sceNpLookupCreateTitleCtx(vm::ptr<const SceNpCommunicationId> titleId, vm::ptr<const SceNpId> selfNpId)
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
}
|
||||
|
|
@ -54,22 +44,22 @@ s32 sceNpLookupSetTimeout(s32 id, s32 resolveRetry, u32 resolveTimeout, u32 conn
|
|||
throw __FUNCTION__;
|
||||
}
|
||||
|
||||
s32 sceNpLookupWaitAsync(s32 reqId, vm::psv::ptr<s32> result)
|
||||
s32 sceNpLookupWaitAsync(s32 reqId, vm::ptr<s32> result)
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
}
|
||||
|
||||
s32 sceNpLookupPollAsync(s32 reqId, vm::psv::ptr<s32> result)
|
||||
s32 sceNpLookupPollAsync(s32 reqId, vm::ptr<s32> result)
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
}
|
||||
|
||||
s32 sceNpLookupNpId(s32 reqId, vm::psv::ptr<const SceNpOnlineId> onlineId, vm::psv::ptr<SceNpId> npId, vm::psv::ptr<void> option)
|
||||
s32 sceNpLookupNpId(s32 reqId, vm::ptr<const SceNpOnlineId> onlineId, vm::ptr<SceNpId> npId, vm::ptr<void> option)
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
}
|
||||
|
||||
s32 sceNpLookupNpIdAsync(s32 reqId, vm::psv::ptr<const SceNpOnlineId> onlineId, vm::psv::ptr<SceNpId> npId, vm::psv::ptr<void> option)
|
||||
s32 sceNpLookupNpIdAsync(s32 reqId, vm::ptr<const SceNpOnlineId> onlineId, vm::ptr<SceNpId> npId, vm::ptr<void> option)
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
}
|
||||
|
|
@ -77,15 +67,15 @@ s32 sceNpLookupNpIdAsync(s32 reqId, vm::psv::ptr<const SceNpOnlineId> onlineId,
|
|||
s32 sceNpLookupUserProfile(
|
||||
s32 reqId,
|
||||
s32 avatarSizeType,
|
||||
vm::psv::ptr<const SceNpId> npId,
|
||||
vm::psv::ptr<SceNpUserInformation> userInfo,
|
||||
vm::psv::ptr<SceNpAboutMe> aboutMe,
|
||||
vm::psv::ptr<SceNpMyLanguages> languages,
|
||||
vm::psv::ptr<SceNpCountryCode> countryCode,
|
||||
vm::psv::ptr<void> avatarImageData,
|
||||
vm::ptr<const SceNpId> npId,
|
||||
vm::ptr<SceNpUserInformation> userInfo,
|
||||
vm::ptr<SceNpAboutMe> aboutMe,
|
||||
vm::ptr<SceNpMyLanguages> languages,
|
||||
vm::ptr<SceNpCountryCode> countryCode,
|
||||
vm::ptr<void> avatarImageData,
|
||||
u32 avatarImageDataMaxSize,
|
||||
vm::psv::ptr<u32> avatarImageDataSize,
|
||||
vm::psv::ptr<void> option)
|
||||
vm::ptr<u32> avatarImageDataSize,
|
||||
vm::ptr<void> option)
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
}
|
||||
|
|
@ -93,25 +83,25 @@ s32 sceNpLookupUserProfile(
|
|||
s32 sceNpLookupUserProfileAsync(
|
||||
s32 reqId,
|
||||
s32 avatarSizeType,
|
||||
vm::psv::ptr<const SceNpId> npId,
|
||||
vm::psv::ptr<SceNpUserInformation> userInfo,
|
||||
vm::psv::ptr<SceNpAboutMe> aboutMe,
|
||||
vm::psv::ptr<SceNpMyLanguages> languages,
|
||||
vm::psv::ptr<SceNpCountryCode> countryCode,
|
||||
vm::psv::ptr<void> avatarImageData,
|
||||
vm::ptr<const SceNpId> npId,
|
||||
vm::ptr<SceNpUserInformation> userInfo,
|
||||
vm::ptr<SceNpAboutMe> aboutMe,
|
||||
vm::ptr<SceNpMyLanguages> languages,
|
||||
vm::ptr<SceNpCountryCode> countryCode,
|
||||
vm::ptr<void> avatarImageData,
|
||||
u32 avatarImageDataMaxSize,
|
||||
vm::psv::ptr<u32> avatarImageDataSize,
|
||||
vm::psv::ptr<void> option)
|
||||
vm::ptr<u32> avatarImageDataSize,
|
||||
vm::ptr<void> option)
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
}
|
||||
|
||||
s32 sceNpLookupAvatarImage(s32 reqId, vm::psv::ptr<const SceNpAvatarUrl> avatarUrl, vm::psv::ptr<SceNpAvatarImage> avatarImage, vm::psv::ptr<void> option)
|
||||
s32 sceNpLookupAvatarImage(s32 reqId, vm::ptr<const SceNpAvatarUrl> avatarUrl, vm::ptr<SceNpAvatarImage> avatarImage, vm::ptr<void> option)
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
}
|
||||
|
||||
s32 sceNpLookupAvatarImageAsync(s32 reqId, vm::psv::ptr<const SceNpAvatarUrl> avatarUrl, vm::psv::ptr<SceNpAvatarImage> avatarImage, vm::psv::ptr<void> option)
|
||||
s32 sceNpLookupAvatarImageAsync(s32 reqId, vm::ptr<const SceNpAvatarUrl> avatarUrl, vm::ptr<SceNpAvatarImage> avatarImage, vm::ptr<void> option)
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
}
|
||||
|
|
@ -126,7 +116,7 @@ s32 sceNpBandwidthTestGetStatus()
|
|||
throw __FUNCTION__;
|
||||
}
|
||||
|
||||
s32 sceNpBandwidthTestShutdown(vm::psv::ptr<SceNpBandwidthTestResult> result)
|
||||
s32 sceNpBandwidthTestShutdown(vm::ptr<SceNpBandwidthTestResult> result)
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
}
|
||||
|
|
@ -143,6 +133,7 @@ psv_log_base sceNpUtility("SceNpUtility", []()
|
|||
sceNpUtility.on_load = nullptr;
|
||||
sceNpUtility.on_unload = nullptr;
|
||||
sceNpUtility.on_stop = nullptr;
|
||||
sceNpUtility.on_error = nullptr;
|
||||
|
||||
REG_FUNC(0x9246A673, sceNpLookupInit);
|
||||
REG_FUNC(0x0158B61B, sceNpLookupTerm);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue