mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-08-05 08:52:36 +00:00
Implement sceNpHasSignedUp
This commit is contained in:
parent
3a2bd69655
commit
696b8981df
@ -1024,8 +1024,9 @@ int PS4_SYSV_ABI sceNpGetUserIdByOnlineId() {
|
|||||||
return ORBIS_OK;
|
return ORBIS_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
int PS4_SYSV_ABI sceNpHasSignedUp() {
|
int PS4_SYSV_ABI sceNpHasSignedUp(OrbisUserServiceUserId user_id, bool* has_signed_up) {
|
||||||
LOG_ERROR(Lib_NpManager, "(STUBBED) called");
|
LOG_DEBUG(Lib_NpManager, "called");
|
||||||
|
*has_signed_up = false;
|
||||||
return ORBIS_OK;
|
return ORBIS_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -233,7 +233,7 @@ int PS4_SYSV_ABI sceNpGetParentalControlInfoA();
|
|||||||
int PS4_SYSV_ABI sceNpGetState(OrbisUserServiceUserId user_id, OrbisNpState* state);
|
int PS4_SYSV_ABI sceNpGetState(OrbisUserServiceUserId user_id, OrbisNpState* state);
|
||||||
int PS4_SYSV_ABI sceNpGetUserIdByAccountId();
|
int PS4_SYSV_ABI sceNpGetUserIdByAccountId();
|
||||||
int PS4_SYSV_ABI sceNpGetUserIdByOnlineId();
|
int PS4_SYSV_ABI sceNpGetUserIdByOnlineId();
|
||||||
int PS4_SYSV_ABI sceNpHasSignedUp();
|
int PS4_SYSV_ABI sceNpHasSignedUp(OrbisUserServiceUserId user_id, bool* has_signed_up);
|
||||||
int PS4_SYSV_ABI sceNpIdMapperAbortRequest();
|
int PS4_SYSV_ABI sceNpIdMapperAbortRequest();
|
||||||
int PS4_SYSV_ABI sceNpIdMapperAccountIdToNpId();
|
int PS4_SYSV_ABI sceNpIdMapperAccountIdToNpId();
|
||||||
int PS4_SYSV_ABI sceNpIdMapperAccountIdToOnlineId();
|
int PS4_SYSV_ABI sceNpIdMapperAccountIdToOnlineId();
|
||||||
|
Loading…
Reference in New Issue
Block a user