Implement sceNpManagerGetPsHandle (#11164)

This commit is contained in:
RipleyTom 2021-11-17 19:02:01 +01:00 committed by GitHub
parent fef8905dc2
commit 22910c02a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3244,10 +3244,11 @@ error_code sceNpManagerGetCachedInfo(CellSysutilUserId userId, vm::ptr<SceNpMana
return CELL_OK;
}
error_code sceNpManagerGetPsHandle()
error_code sceNpManagerGetPsHandle(vm::ptr<SceNpOnlineId> onlineId)
{
UNIMPLEMENTED_FUNC(sceNp);
return CELL_OK;
sceNp.warning("sceNpManagerGetPsHandle(onlineId=*0x%x)", onlineId);
return sceNpManagerGetOnlineId(onlineId);
}
error_code sceNpManagerRequestTicket(vm::cptr<SceNpId> npId, vm::cptr<char> serviceId, vm::cptr<void> cookie, u32 cookieSize, vm::cptr<char> entitlementId, u32 consumedCount)