From 9ce2ca6d3c276a7be20528d9a32f40fe425aa311 Mon Sep 17 00:00:00 2001 From: igor725 Date: Fri, 26 Apr 2024 01:01:27 +0300 Subject: [PATCH] Some stubs --- modules/libSceHttp/entry.cpp | 5 +++++ modules/libSceNpAuth/entry.cpp | 6 ++++++ 2 files changed, 11 insertions(+) diff --git a/modules/libSceHttp/entry.cpp b/modules/libSceHttp/entry.cpp index a301701..301ad9e 100644 --- a/modules/libSceHttp/entry.cpp +++ b/modules/libSceHttp/entry.cpp @@ -250,4 +250,9 @@ EXPORT SYSV_ABI int sceHttpsSetSslCallback(int id, SceHttpsCallback cbfunc, void EXPORT SYSV_ABI int sceHttpsSetSslVersion(int id, SceSslVersion version) { return accessNetworking().httpsSetSslVersion(id, version); } + +EXPORT SYSV_ABI int sceHttpUriEscape(char* out, size_t* req, size_t outsz, const char* str) { + *req = 0; + return 0; +} } diff --git a/modules/libSceNpAuth/entry.cpp b/modules/libSceNpAuth/entry.cpp index ab24f7b..198e617 100644 --- a/modules/libSceNpAuth/entry.cpp +++ b/modules/libSceNpAuth/entry.cpp @@ -68,4 +68,10 @@ EXPORT SYSV_ABI int32_t sceNpAuthGetIdTokenA() { LOG_ERR(L"todo %S", __FUNCTION__); return Ok; } + +EXPORT SYSV_ABI int32_t sceNpAuthGetAuthorizationCodeV3() { + LOG_USE_MODULE(libSceNpAuth); + LOG_ERR(L"todo %S", __FUNCTION__); + return Ok; +} }