From 0e7e100a7e6d96454c11b37d108b6bd1022c71ef Mon Sep 17 00:00:00 2001 From: Stephen Miller <56742918+StevenMiller123@users.noreply.github.com> Date: Sat, 6 Sep 2025 16:32:22 -0500 Subject: [PATCH] Libraries: Np libraries cleanup (#3535) * Np library cleanup Moved all Np libraries to a Np folder, created files for Np error codes and structs shared between the libraries, removed empty auto-generated stubs from NpCommon and NpManager, and more things of that nature. Also implemented sceNpGetAccountCountry, since we already had sceNpGetAccountCountryA anyway. * Cleanup NpManager signed_out checks The PR that introduced the PSN signed in status reverted some of the changes I'd previously made to improve accuracy. Also they missed sceNpHasSignedUp, which just uses an internal variant of sceNpGetState for it's own check. * Copyright dates * Move signin check to NpManager RegisterLib Hardcoding it the way I did caused it to read signin status before config was read. * Fix RegisterLib names Not sure why these weren't adjusted yet, so I've adjusted them myself. * Fix NpCommon exports * Basic parameter validation in sceNpDeleteRequest and sceNpCreateRequest * More thorough request logic Created an enum to capture the current state of each request, using a vector to store them. I've made 3 states, none represents deleted requests, active represents requests that were made, but haven't been used yet, and complete represents used requests (a request cannot be used for multiple functions). * Functions sceNpCheckAvailability, sceNpCheckAvailabilityA, sceNpCheckNpReachability, sceNpGetAccountDateOfBirth, sceNpGetAccountDateOfBirthA added. * sceNpGetAccountLanguage, sceNpGetAccountLanguageA * sceNpGetGamePresenceStatus, sceNpGetGamePresenceStatusA Also reduced debug logging for functions with early signed out returns, since those should behave identically to real hardware so long as you keep PSN emulation disabled. * Fix sceNpGetAccountLanguage parameters Oops * sceNpGetNpReachabilityState * sceNpGetParentalControlInfo, sceNpGetParentalControlInfoA * Move OrbisNpState back to np_manager.h Until this sees use elsewhere, this doesn't need to be with np-wide things. * Clang --- CMakeLists.txt | 39 +- .../libraries/libc_internal/libc_internal.cpp | 2 +- .../libraries/libc_internal/libc_internal.h | 2 +- src/core/libraries/libs.cpp | 32 +- src/core/libraries/ngs2/ngs2.cpp | 2 +- src/core/libraries/ngs2/ngs2.h | 2 +- .../libraries/{np_auth => np}/np_auth.cpp | 8 +- src/core/libraries/{np_auth => np}/np_auth.h | 6 +- src/core/libraries/np/np_common.cpp | 105 + src/core/libraries/np/np_common.h | 21 + .../{np_common => np}/np_common_error.h | 3 +- src/core/libraries/np/np_error.h | 12 + src/core/libraries/np/np_manager.cpp | 492 + src/core/libraries/np/np_manager.h | 70 + .../libraries/{np_party => np}/np_party.cpp | 11 +- .../libraries/{np_party => np}/np_party.h | 8 +- .../{np_party => np}/np_party_error.h | 2 +- .../np_profile_dialog.cpp} | 6 +- .../np_profile_dialog.h} | 4 +- .../libraries/{np_score => np}/np_score.cpp | 8 +- .../libraries/{np_score => np}/np_score.h | 6 +- .../libraries/{np_trophy => np}/np_trophy.cpp | 13 +- .../libraries/{np_trophy => np}/np_trophy.h | 6 +- .../{np_trophy => np}/np_trophy_error.h | 2 +- src/core/libraries/np/np_types.h | 26 + .../{np_web_api => np}/np_web_api.cpp | 8 +- .../libraries/{np_web_api => np}/np_web_api.h | 6 +- .../libraries/{np_trophy => np}/trophy_ui.cpp | 8 +- .../libraries/{np_trophy => np}/trophy_ui.h | 8 +- src/core/libraries/np_common/np_common.cpp | 7915 ----------------- src/core/libraries/np_common/np_common.h | 1245 --- src/core/libraries/np_manager/np_manager.cpp | 3562 -------- src/core/libraries/np_manager/np_manager.h | 546 -- .../libraries/np_manager/np_manager_error.h | 9 - src/core/libraries/share_play/shareplay.h | 6 +- src/emulator.cpp | 8 +- 36 files changed, 828 insertions(+), 13381 deletions(-) rename src/core/libraries/{np_auth => np}/np_auth.cpp (95%) rename src/core/libraries/{np_auth => np}/np_auth.h (85%) create mode 100644 src/core/libraries/np/np_common.cpp create mode 100644 src/core/libraries/np/np_common.h rename src/core/libraries/{np_common => np}/np_common_error.h (56%) create mode 100644 src/core/libraries/np/np_error.h create mode 100644 src/core/libraries/np/np_manager.cpp create mode 100644 src/core/libraries/np/np_manager.h rename src/core/libraries/{np_party => np}/np_party.cpp (96%) rename src/core/libraries/{np_party => np}/np_party.h (88%) rename src/core/libraries/{np_party => np}/np_party_error.h (72%) rename src/core/libraries/{np_profiledialog/np_profiledialog.cpp => np/np_profile_dialog.cpp} (94%) rename src/core/libraries/{np_profiledialog/np_profiledialog.h => np/np_profile_dialog.h} (87%) rename src/core/libraries/{np_score => np}/np_score.cpp (98%) rename src/core/libraries/{np_score => np}/np_score.h (95%) rename src/core/libraries/{np_trophy => np}/np_trophy.cpp (99%) rename src/core/libraries/{np_trophy => np}/np_trophy.h (98%) rename src/core/libraries/{np_trophy => np}/np_trophy_error.h (97%) create mode 100644 src/core/libraries/np/np_types.h rename src/core/libraries/{np_web_api => np}/np_web_api.cpp (99%) rename src/core/libraries/{np_web_api => np}/np_web_api.h (97%) rename src/core/libraries/{np_trophy => np}/trophy_ui.cpp (98%) rename src/core/libraries/{np_trophy => np}/trophy_ui.h (84%) delete mode 100644 src/core/libraries/np_common/np_common.cpp delete mode 100644 src/core/libraries/np_common/np_common.h delete mode 100644 src/core/libraries/np_manager/np_manager.cpp delete mode 100644 src/core/libraries/np_manager/np_manager.h delete mode 100644 src/core/libraries/np_manager/np_manager_error.h diff --git a/CMakeLists.txt b/CMakeLists.txt index 197ce3bf4..b21f20432 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -577,26 +577,25 @@ set(VDEC_LIB src/core/libraries/videodec/videodec2_impl.cpp src/core/libraries/videodec/videodec_impl.h ) -set(NP_LIBS src/core/libraries/np_common/np_common.cpp - src/core/libraries/np_common/np_common.h - src/core/libraries/np_manager/np_manager.cpp - src/core/libraries/np_manager/np_manager.h - src/core/libraries/np_score/np_score.cpp - src/core/libraries/np_score/np_score.h - src/core/libraries/np_trophy/np_trophy.cpp - src/core/libraries/np_trophy/np_trophy.h - src/core/libraries/np_trophy/trophy_ui.cpp - src/core/libraries/np_trophy/trophy_ui.h - src/core/libraries/np_trophy/np_trophy_error.h - src/core/libraries/np_web_api/np_web_api.cpp - src/core/libraries/np_web_api/np_web_api.h - src/core/libraries/np_party/np_party.cpp - src/core/libraries/np_party/np_party.h - src/core/libraries/np_party/np_party_error.h - src/core/libraries/np_auth/np_auth.cpp - src/core/libraries/np_auth/np_auth.h - src/core/libraries/np_profiledialog/np_profiledialog.cpp - src/core/libraries/np_profiledialog/np_profiledialog.h +set(NP_LIBS src/core/libraries/np/np_error.h + src/core/libraries/np/np_common.cpp + src/core/libraries/np/np_common.h + src/core/libraries/np/np_manager.cpp + src/core/libraries/np/np_manager.h + src/core/libraries/np/np_score.cpp + src/core/libraries/np/np_score.h + src/core/libraries/np/np_trophy.cpp + src/core/libraries/np/np_trophy.h + src/core/libraries/np/trophy_ui.cpp + src/core/libraries/np/trophy_ui.h + src/core/libraries/np/np_web_api.cpp + src/core/libraries/np/np_web_api.h + src/core/libraries/np/np_party.cpp + src/core/libraries/np/np_party.h + src/core/libraries/np/np_auth.cpp + src/core/libraries/np/np_auth.h + src/core/libraries/np/np_profile_dialog.cpp + src/core/libraries/np/np_profile_dialog.h ) set(ZLIB_LIB src/core/libraries/zlib/zlib.cpp diff --git a/src/core/libraries/libc_internal/libc_internal.cpp b/src/core/libraries/libc_internal/libc_internal.cpp index 0b374c5a2..df35680a4 100644 --- a/src/core/libraries/libc_internal/libc_internal.cpp +++ b/src/core/libraries/libc_internal/libc_internal.cpp @@ -15,7 +15,7 @@ namespace Libraries::LibcInternal { -void RegisterlibSceLibcInternal(Core::Loader::SymbolsResolver* sym) { +void RegisterLib(Core::Loader::SymbolsResolver* sym) { RegisterlibSceLibcInternalMath(sym); RegisterlibSceLibcInternalStr(sym); RegisterlibSceLibcInternalMemory(sym); diff --git a/src/core/libraries/libc_internal/libc_internal.h b/src/core/libraries/libc_internal/libc_internal.h index 4f77ab79a..9b00b72d8 100644 --- a/src/core/libraries/libc_internal/libc_internal.h +++ b/src/core/libraries/libc_internal/libc_internal.h @@ -14,5 +14,5 @@ namespace Libraries::LibcInternal { // I won't manage definitons of 3000+ functions, and they don't need to be accessed externally, // so everything is just in the .cpp file -void RegisterlibSceLibcInternal(Core::Loader::SymbolsResolver* sym); +void RegisterLib(Core::Loader::SymbolsResolver* sym); } // namespace Libraries::LibcInternal \ No newline at end of file diff --git a/src/core/libraries/libs.cpp b/src/core/libraries/libs.cpp index 422b8e351..b7582d064 100644 --- a/src/core/libraries/libs.cpp +++ b/src/core/libraries/libs.cpp @@ -31,14 +31,14 @@ #include "core/libraries/network/netctl.h" #include "core/libraries/network/ssl.h" #include "core/libraries/network/ssl2.h" -#include "core/libraries/np_auth/np_auth.h" -#include "core/libraries/np_common/np_common.h" -#include "core/libraries/np_manager/np_manager.h" -#include "core/libraries/np_party/np_party.h" -#include "core/libraries/np_profiledialog/np_profiledialog.h" -#include "core/libraries/np_score/np_score.h" -#include "core/libraries/np_trophy/np_trophy.h" -#include "core/libraries/np_web_api/np_web_api.h" +#include "core/libraries/np/np_auth.h" +#include "core/libraries/np/np_common.h" +#include "core/libraries/np/np_manager.h" +#include "core/libraries/np/np_party.h" +#include "core/libraries/np/np_profile_dialog.h" +#include "core/libraries/np/np_score.h" +#include "core/libraries/np/np_trophy.h" +#include "core/libraries/np/np_web_api.h" #include "core/libraries/pad/pad.h" #include "core/libraries/playgo/playgo.h" #include "core/libraries/playgo/playgo_dialog.h" @@ -93,13 +93,14 @@ void InitHLELibs(Core::Loader::SymbolsResolver* sym) { Libraries::SysModule::RegisterLib(sym); Libraries::Posix::RegisterLib(sym); Libraries::AudioIn::RegisterLib(sym); - Libraries::NpCommon::RegisterLib(sym); - Libraries::NpManager::RegisterLib(sym); - Libraries::NpScore::RegisterLib(sym); - Libraries::NpTrophy::RegisterLib(sym); - Libraries::NpWebApi::RegisterLib(sym); - Libraries::NpProfileDialog::RegisterLib(sym); - Libraries::NpAuth::RegisterLib(sym); + Libraries::Np::NpCommon::RegisterLib(sym); + Libraries::Np::NpManager::RegisterLib(sym); + Libraries::Np::NpScore::RegisterLib(sym); + Libraries::Np::NpTrophy::RegisterLib(sym); + Libraries::Np::NpWebApi::RegisterLib(sym); + Libraries::Np::NpProfileDialog::RegisterLib(sym); + Libraries::Np::NpAuth::RegisterLib(sym); + Libraries::Np::NpParty::RegisterLib(sym); Libraries::ScreenShot::RegisterLib(sym); Libraries::AppContent::RegisterLib(sym); Libraries::PngDec::RegisterLib(sym); @@ -126,7 +127,6 @@ void InitHLELibs(Core::Loader::SymbolsResolver* sym) { Libraries::JpegEnc::RegisterLib(sym); Libraries::Mouse::RegisterLib(sym); Libraries::WebBrowserDialog::RegisterLib(sym); - Libraries::NpParty::RegisterLib(sym); Libraries::Zlib::RegisterLib(sym); Libraries::Hmd::RegisterLib(sym); Libraries::HmdSetupDialog::RegisterLib(sym); diff --git a/src/core/libraries/ngs2/ngs2.cpp b/src/core/libraries/ngs2/ngs2.cpp index 9bb73536c..73602afc0 100644 --- a/src/core/libraries/ngs2/ngs2.cpp +++ b/src/core/libraries/ngs2/ngs2.cpp @@ -519,7 +519,7 @@ int PS4_SYSV_ABI sceNgs2VoiceRunCommands() { return ORBIS_OK; } -void RegisterlibSceNgs2(Core::Loader::SymbolsResolver* sym) { +void RegisterLib(Core::Loader::SymbolsResolver* sym) { LIB_FUNCTION("3pCNbVM11UA", "libSceNgs2", 1, "libSceNgs2", 1, 1, sceNgs2CalcWaveformBlock); LIB_FUNCTION("6qN1zaEZuN0", "libSceNgs2", 1, "libSceNgs2", 1, 1, sceNgs2CustomRackGetModuleInfo); diff --git a/src/core/libraries/ngs2/ngs2.h b/src/core/libraries/ngs2/ngs2.h index 6c499d974..4a5724d0f 100644 --- a/src/core/libraries/ngs2/ngs2.h +++ b/src/core/libraries/ngs2/ngs2.h @@ -269,6 +269,6 @@ struct OrbisNgs2VoiceState { u32 stateFlags; }; -void RegisterlibSceNgs2(Core::Loader::SymbolsResolver* sym); +void RegisterLib(Core::Loader::SymbolsResolver* sym); } // namespace Libraries::Ngs2 diff --git a/src/core/libraries/np_auth/np_auth.cpp b/src/core/libraries/np/np_auth.cpp similarity index 95% rename from src/core/libraries/np_auth/np_auth.cpp rename to src/core/libraries/np/np_auth.cpp index 90f249c97..37a48e748 100644 --- a/src/core/libraries/np_auth/np_auth.cpp +++ b/src/core/libraries/np/np_auth.cpp @@ -1,12 +1,12 @@ -// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project +// SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later #include "common/logging/log.h" #include "core/libraries/error_codes.h" #include "core/libraries/libs.h" -#include "core/libraries/np_auth/np_auth.h" +#include "core/libraries/np/np_auth.h" -namespace Libraries::NpAuth { +namespace Libraries::Np::NpAuth { s32 PS4_SYSV_ABI sceNpAuthGetAuthorizationCode() { LOG_ERROR(Lib_NpAuth, "(STUBBED) called"); @@ -96,4 +96,4 @@ void RegisterLib(Core::Loader::SymbolsResolver* sym) { LIB_FUNCTION("SK-S7daqJSE", "libSceNpAuth", 1, "libSceNpAuth", 1, 1, sceNpAuthWaitAsync); }; -} // namespace Libraries::NpAuth \ No newline at end of file +} // namespace Libraries::Np::NpAuth \ No newline at end of file diff --git a/src/core/libraries/np_auth/np_auth.h b/src/core/libraries/np/np_auth.h similarity index 85% rename from src/core/libraries/np_auth/np_auth.h rename to src/core/libraries/np/np_auth.h index 17f293865..579261711 100644 --- a/src/core/libraries/np_auth/np_auth.h +++ b/src/core/libraries/np/np_auth.h @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project +// SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later #pragma once @@ -9,7 +9,7 @@ namespace Core::Loader { class SymbolsResolver; } -namespace Libraries::NpAuth { +namespace Libraries::Np::NpAuth { s32 PS4_SYSV_ABI sceNpAuthGetAuthorizationCode(); s32 PS4_SYSV_ABI sceNpAuthGetIdToken(); @@ -26,4 +26,4 @@ s32 PS4_SYSV_ABI sceNpAuthSetTimeout(); s32 PS4_SYSV_ABI sceNpAuthWaitAsync(); void RegisterLib(Core::Loader::SymbolsResolver* sym); -} // namespace Libraries::NpAuth \ No newline at end of file +} // namespace Libraries::Np::NpAuth \ No newline at end of file diff --git a/src/core/libraries/np/np_common.cpp b/src/core/libraries/np/np_common.cpp new file mode 100644 index 000000000..039f69607 --- /dev/null +++ b/src/core/libraries/np/np_common.cpp @@ -0,0 +1,105 @@ +// SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#include "common/logging/log.h" +#include "core/libraries/error_codes.h" +#include "core/libraries/libs.h" +#include "core/libraries/np/np_common.h" +#include "core/libraries/np/np_common_error.h" +#include "core/libraries/np/np_error.h" +#include "core/libraries/np/np_types.h" + +namespace Libraries::Np::NpCommon { + +s32 PS4_SYSV_ABI sceNpCmpNpId(OrbisNpId* np_id1, OrbisNpId* np_id2) { + if (np_id1 == nullptr || np_id2 == nullptr) { + return ORBIS_NP_ERROR_INVALID_ARGUMENT; + } + + // Compare data + if (std::strncmp(np_id1->handle.data, np_id2->handle.data, ORBIS_NP_ONLINEID_MAX_LENGTH) != 0) { + return ORBIS_NP_UTIL_ERROR_NOT_MATCH; + } + + // Compare opt + for (u32 i = 0; i < 8; i++) { + if (np_id1->opt[i] != np_id2->opt[i]) { + return ORBIS_NP_UTIL_ERROR_NOT_MATCH; + } + } + + // Compare reserved + for (u32 i = 0; i < 8; i++) { + if (np_id1->reserved[i] != np_id2->reserved[i]) { + return ORBIS_NP_UTIL_ERROR_NOT_MATCH; + } + } + + return ORBIS_OK; +} + +s32 PS4_SYSV_ABI sceNpCmpNpIdInOrder(OrbisNpId* np_id1, OrbisNpId* np_id2, u32* out_result) { + if (np_id1 == nullptr || np_id2 == nullptr || out_result == nullptr) { + return ORBIS_NP_ERROR_INVALID_ARGUMENT; + } + + // Compare data + u32 compare = + std::strncmp(np_id1->handle.data, np_id2->handle.data, ORBIS_NP_ONLINEID_MAX_LENGTH); + if (compare < 0) { + *out_result = -1; + return ORBIS_OK; + } else if (compare > 0) { + *out_result = 1; + return ORBIS_OK; + } + + // Compare opt + for (u32 i = 0; i < 8; i++) { + if (np_id1->opt[i] < np_id2->opt[i]) { + *out_result = -1; + return ORBIS_OK; + } else if (np_id1->opt[i] > np_id2->opt[i]) { + *out_result = 1; + return ORBIS_OK; + } + } + + // Compare reserved + for (u32 i = 0; i < 8; i++) { + if (np_id1->reserved[i] < np_id2->reserved[i]) { + *out_result = -1; + return ORBIS_OK; + } else if (np_id1->reserved[i] > np_id2->reserved[i]) { + *out_result = 1; + return ORBIS_OK; + } + } + + *out_result = 0; + return ORBIS_OK; +} + +s32 PS4_SYSV_ABI sceNpCmpOnlineId(OrbisNpOnlineId* online_id1, OrbisNpOnlineId* online_id2) { + if (online_id1 == nullptr || online_id2 == nullptr) { + return ORBIS_NP_ERROR_INVALID_ARGUMENT; + } + + if (std::strncmp(online_id1->data, online_id2->data, ORBIS_NP_ONLINEID_MAX_LENGTH) != 0) { + return ORBIS_NP_UTIL_ERROR_NOT_MATCH; + } + return ORBIS_OK; +} + +void RegisterLib(Core::Loader::SymbolsResolver* sym) { + LIB_FUNCTION("i8UmXTSq7N4", "libSceNpCommonCompat", 1, "libSceNpCommon", 1, 1, sceNpCmpNpId); + LIB_FUNCTION("TcwEFnakiSc", "libSceNpCommonCompat", 1, "libSceNpCommon", 1, 1, + sceNpCmpNpIdInOrder); + LIB_FUNCTION("dj+O5aD2a0Q", "libSceNpCommonCompat", 1, "libSceNpCommon", 1, 1, + sceNpCmpOnlineId); + LIB_FUNCTION("i8UmXTSq7N4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpCmpNpId); + LIB_FUNCTION("TcwEFnakiSc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpCmpNpIdInOrder); + LIB_FUNCTION("dj+O5aD2a0Q", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpCmpOnlineId); +}; + +} // namespace Libraries::Np::NpCommon \ No newline at end of file diff --git a/src/core/libraries/np/np_common.h b/src/core/libraries/np/np_common.h new file mode 100644 index 000000000..2fd4ecd7c --- /dev/null +++ b/src/core/libraries/np/np_common.h @@ -0,0 +1,21 @@ +// SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#include "common/types.h" + +namespace Core::Loader { +class SymbolsResolver; +} + +namespace Libraries::Np::NpCommon { + +struct OrbisNpFreeKernelMemoryArgs { + u64 length; + u64 unk; + void* addr; +}; + +void RegisterLib(Core::Loader::SymbolsResolver* sym); +} // namespace Libraries::Np::NpCommon \ No newline at end of file diff --git a/src/core/libraries/np_common/np_common_error.h b/src/core/libraries/np/np_common_error.h similarity index 56% rename from src/core/libraries/np_common/np_common_error.h rename to src/core/libraries/np/np_common_error.h index 5da6e6a90..1fcef1ece 100644 --- a/src/core/libraries/np_common/np_common_error.h +++ b/src/core/libraries/np/np_common_error.h @@ -1,9 +1,8 @@ -// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project +// SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later #pragma once #include "core/libraries/error_codes.h" -constexpr int ORBIS_NP_ERROR_INVALID_ARGUMENT = 0x80550003; constexpr int ORBIS_NP_UTIL_ERROR_NOT_MATCH = 0x80550609; \ No newline at end of file diff --git a/src/core/libraries/np/np_error.h b/src/core/libraries/np/np_error.h new file mode 100644 index 000000000..83140f702 --- /dev/null +++ b/src/core/libraries/np/np_error.h @@ -0,0 +1,12 @@ +// SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#include "core/libraries/error_codes.h" + +// For error codes shared between multiple Np libraries. +constexpr int ORBIS_NP_ERROR_INVALID_ARGUMENT = 0x80550003; +constexpr int ORBIS_NP_ERROR_SIGNED_OUT = 0x80550006; +constexpr int ORBIS_NP_ERROR_REQUEST_MAX = 0x80550013; +constexpr int ORBIS_NP_ERROR_REQUEST_NOT_FOUND = 0x80550014; \ No newline at end of file diff --git a/src/core/libraries/np/np_manager.cpp b/src/core/libraries/np/np_manager.cpp new file mode 100644 index 000000000..a15740014 --- /dev/null +++ b/src/core/libraries/np/np_manager.cpp @@ -0,0 +1,492 @@ +// SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#include "common/config.h" +#include "common/logging/log.h" +#include "core/libraries/error_codes.h" +#include "core/libraries/libs.h" +#include "core/libraries/np/np_error.h" +#include "core/libraries/np/np_manager.h" +#include "core/tls.h" + +namespace Libraries::Np::NpManager { + +static bool g_signed_in = false; +static s32 g_active_requests = 0; +static std::vector g_requests; + +s32 PS4_SYSV_ABI sceNpCreateRequest() { + LOG_DEBUG(Lib_NpManager, "called"); + if (g_active_requests == ORBIS_NP_MANAGER_REQUEST_LIMIT) { + return ORBIS_NP_ERROR_REQUEST_MAX; + } + + s32 req_index = 0; + while (req_index < g_requests.size()) { + // Find first nonexistant request + if (g_requests[req_index] == OrbisNpRequestState::None) { + // There is no request at this index, set the index to ready then break. + g_requests[req_index] = OrbisNpRequestState::Ready; + break; + } + req_index++; + } + + if (req_index == g_requests.size()) { + // There are no requests to replace. + g_requests.emplace_back(OrbisNpRequestState::Ready); + } + + // Offset by one, first returned ID is 0x20000001 + g_active_requests++; + return req_index + ORBIS_NP_MANAGER_REQUEST_ID_OFFSET + 1; +} + +s32 PS4_SYSV_ABI sceNpCheckNpAvailability(s32 req_id, OrbisNpOnlineId* online_id) { + if (online_id == nullptr) { + return ORBIS_NP_ERROR_INVALID_ARGUMENT; + } + + s32 req_index = req_id - ORBIS_NP_MANAGER_REQUEST_ID_OFFSET - 1; + if (g_active_requests == 0 || g_requests.size() <= req_index || + g_requests[req_index] == OrbisNpRequestState::None) { + return ORBIS_NP_ERROR_REQUEST_NOT_FOUND; + } + + if (g_requests[req_index] == OrbisNpRequestState::Complete) { + return ORBIS_NP_ERROR_INVALID_ARGUMENT; + } + + g_requests[req_index] = OrbisNpRequestState::Complete; + if (!g_signed_in) { + return ORBIS_NP_ERROR_SIGNED_OUT; + } + + LOG_ERROR(Lib_NpManager, "(STUBBED) called, req_id = {:#x}", req_id); + return ORBIS_OK; +} + +s32 PS4_SYSV_ABI sceNpCheckNpAvailabilityA(s32 req_id, + Libraries::UserService::OrbisUserServiceUserId user_id) { + s32 req_index = req_id - ORBIS_NP_MANAGER_REQUEST_ID_OFFSET - 1; + if (g_active_requests == 0 || g_requests.size() <= req_index || + g_requests[req_index] == OrbisNpRequestState::None) { + return ORBIS_NP_ERROR_REQUEST_NOT_FOUND; + } + + if (g_requests[req_index] == OrbisNpRequestState::Complete) { + return ORBIS_NP_ERROR_INVALID_ARGUMENT; + } + + g_requests[req_index] = OrbisNpRequestState::Complete; + if (!g_signed_in) { + return ORBIS_NP_ERROR_SIGNED_OUT; + } + + LOG_ERROR(Lib_NpManager, "(STUBBED) called, req_id = {:#x}", req_id); + return ORBIS_OK; +} + +s32 PS4_SYSV_ABI sceNpCheckNpReachability(s32 req_id, + Libraries::UserService::OrbisUserServiceUserId user_id) { + s32 req_index = req_id - ORBIS_NP_MANAGER_REQUEST_ID_OFFSET - 1; + if (g_active_requests == 0 || g_requests.size() <= req_index || + g_requests[req_index] == OrbisNpRequestState::None) { + return ORBIS_NP_ERROR_REQUEST_NOT_FOUND; + } + + if (g_requests[req_index] == OrbisNpRequestState::Complete) { + return ORBIS_NP_ERROR_INVALID_ARGUMENT; + } + + g_requests[req_index] = OrbisNpRequestState::Complete; + if (!g_signed_in) { + return ORBIS_NP_ERROR_SIGNED_OUT; + } + + LOG_ERROR(Lib_NpManager, "(STUBBED) called, req_id = {:#x}", req_id); + return ORBIS_OK; +} + +s32 PS4_SYSV_ABI sceNpGetAccountLanguage(s32 req_id, OrbisNpOnlineId* online_id, + OrbisNpLanguageCode* language) { + if (online_id == nullptr || language == nullptr) { + return ORBIS_NP_ERROR_INVALID_ARGUMENT; + } + + s32 req_index = req_id - ORBIS_NP_MANAGER_REQUEST_ID_OFFSET - 1; + if (g_active_requests == 0 || g_requests.size() <= req_index || + g_requests[req_index] == OrbisNpRequestState::None) { + return ORBIS_NP_ERROR_REQUEST_NOT_FOUND; + } + + if (g_requests[req_index] == OrbisNpRequestState::Complete) { + return ORBIS_NP_ERROR_INVALID_ARGUMENT; + } + + g_requests[req_index] = OrbisNpRequestState::Complete; + if (!g_signed_in) { + return ORBIS_NP_ERROR_SIGNED_OUT; + } + + std::memset(language, 0, sizeof(OrbisNpLanguageCode)); + LOG_ERROR(Lib_NpManager, "(STUBBED) called"); + return ORBIS_OK; +} + +s32 PS4_SYSV_ABI sceNpGetAccountLanguageA(s32 req_id, + Libraries::UserService::OrbisUserServiceUserId user_id, + OrbisNpLanguageCode* language) { + if (language == nullptr) { + return ORBIS_NP_ERROR_INVALID_ARGUMENT; + } + + s32 req_index = req_id - ORBIS_NP_MANAGER_REQUEST_ID_OFFSET - 1; + if (g_active_requests == 0 || g_requests.size() <= req_index || + g_requests[req_index] == OrbisNpRequestState::None) { + return ORBIS_NP_ERROR_REQUEST_NOT_FOUND; + } + + if (g_requests[req_index] == OrbisNpRequestState::Complete) { + return ORBIS_NP_ERROR_INVALID_ARGUMENT; + } + + g_requests[req_index] = OrbisNpRequestState::Complete; + if (!g_signed_in) { + return ORBIS_NP_ERROR_SIGNED_OUT; + } + + std::memset(language, 0, sizeof(OrbisNpLanguageCode)); + LOG_ERROR(Lib_NpManager, "(STUBBED) called, user_id = {}", user_id); + return ORBIS_OK; +} + +s32 PS4_SYSV_ABI sceNpGetParentalControlInfo(s32 req_id, OrbisNpOnlineId* online_id, s8* age, + OrbisNpParentalControlInfo* info) { + if (online_id == nullptr || age == nullptr || info == nullptr) { + return ORBIS_NP_ERROR_INVALID_ARGUMENT; + } + + s32 req_index = req_id - ORBIS_NP_MANAGER_REQUEST_ID_OFFSET - 1; + if (g_active_requests == 0 || g_requests.size() <= req_index || + g_requests[req_index] == OrbisNpRequestState::None) { + return ORBIS_NP_ERROR_REQUEST_NOT_FOUND; + } + + if (g_requests[req_index] == OrbisNpRequestState::Complete) { + return ORBIS_NP_ERROR_INVALID_ARGUMENT; + } + + g_requests[req_index] = OrbisNpRequestState::Complete; + if (!g_signed_in) { + return ORBIS_NP_ERROR_SIGNED_OUT; + } + + // TODO: Add to config? + *age = 13; + std::memset(info, 0, sizeof(OrbisNpParentalControlInfo)); + LOG_ERROR(Lib_NpManager, "(STUBBED) called"); + return ORBIS_OK; +} + +s32 PS4_SYSV_ABI +sceNpGetParentalControlInfoA(s32 req_id, Libraries::UserService::OrbisUserServiceUserId user_id, + s8* age, OrbisNpParentalControlInfo* info) { + if (age == nullptr || info == nullptr) { + return ORBIS_NP_ERROR_INVALID_ARGUMENT; + } + + s32 req_index = req_id - ORBIS_NP_MANAGER_REQUEST_ID_OFFSET - 1; + if (g_active_requests == 0 || g_requests.size() <= req_index || + g_requests[req_index] == OrbisNpRequestState::None) { + return ORBIS_NP_ERROR_REQUEST_NOT_FOUND; + } + + if (g_requests[req_index] == OrbisNpRequestState::Complete) { + return ORBIS_NP_ERROR_INVALID_ARGUMENT; + } + + g_requests[req_index] = OrbisNpRequestState::Complete; + if (!g_signed_in) { + return ORBIS_NP_ERROR_SIGNED_OUT; + } + + // TODO: Add to config? + *age = 13; + std::memset(info, 0, sizeof(OrbisNpParentalControlInfo)); + LOG_ERROR(Lib_NpManager, "(STUBBED) called, user_id = {}", user_id); + return ORBIS_OK; +} + +s32 PS4_SYSV_ABI sceNpDeleteRequest(s32 req_id) { + LOG_DEBUG(Lib_NpManager, "called req_id = {:#x}", req_id); + s32 req_index = req_id - ORBIS_NP_MANAGER_REQUEST_ID_OFFSET - 1; + if (g_active_requests == 0 || g_requests.size() <= req_index || + g_requests[req_index] == OrbisNpRequestState::None) { + return ORBIS_NP_ERROR_REQUEST_NOT_FOUND; + } + + g_active_requests--; + g_requests[req_index] = OrbisNpRequestState::None; + return ORBIS_OK; +} + +s32 PS4_SYSV_ABI sceNpGetAccountCountry(OrbisNpOnlineId* online_id, + OrbisNpCountryCode* country_code) { + if (online_id == nullptr || country_code == nullptr) { + return ORBIS_NP_ERROR_INVALID_ARGUMENT; + } + if (!g_signed_in) { + return ORBIS_NP_ERROR_SIGNED_OUT; + } + std::memset(country_code, 0, sizeof(OrbisNpCountryCode)); + // TODO: get NP country code from config + std::memcpy(country_code->country_code, "us", 2); + return ORBIS_OK; +} + +s32 PS4_SYSV_ABI sceNpGetAccountCountryA(Libraries::UserService::OrbisUserServiceUserId user_id, + OrbisNpCountryCode* country_code) { + if (country_code == nullptr) { + return ORBIS_NP_ERROR_INVALID_ARGUMENT; + } + if (!g_signed_in) { + return ORBIS_NP_ERROR_SIGNED_OUT; + } + std::memset(country_code, 0, sizeof(OrbisNpCountryCode)); + // TODO: get NP country code from config + std::memcpy(country_code->country_code, "us", 2); + return ORBIS_OK; +} + +s32 PS4_SYSV_ABI sceNpGetAccountDateOfBirth(OrbisNpOnlineId* online_id, + OrbisNpDate* date_of_birth) { + if (online_id == nullptr || date_of_birth == nullptr) { + return ORBIS_NP_ERROR_INVALID_ARGUMENT; + } + if (!g_signed_in) { + return ORBIS_NP_ERROR_SIGNED_OUT; + } + + // TODO: maybe add to config? + date_of_birth->day = 1; + date_of_birth->month = 1; + date_of_birth->year = 2000; + return ORBIS_OK; +} + +s32 PS4_SYSV_ABI sceNpGetAccountDateOfBirthA(Libraries::UserService::OrbisUserServiceUserId user_id, + OrbisNpDate* date_of_birth) { + if (date_of_birth == nullptr) { + return ORBIS_NP_ERROR_INVALID_ARGUMENT; + } + if (!g_signed_in) { + return ORBIS_NP_ERROR_SIGNED_OUT; + } + + // TODO: maybe add to config? + date_of_birth->day = 1; + date_of_birth->month = 1; + date_of_birth->year = 2000; + return ORBIS_OK; +} + +s32 PS4_SYSV_ABI sceNpGetGamePresenceStatus(OrbisNpOnlineId* online_id, + OrbisNpGamePresenseStatus* game_status) { + if (online_id == nullptr || game_status == nullptr) { + return ORBIS_NP_ERROR_INVALID_ARGUMENT; + } + + *game_status = + g_signed_in ? OrbisNpGamePresenseStatus::Online : OrbisNpGamePresenseStatus::Offline; + return ORBIS_OK; +} + +s32 PS4_SYSV_ABI sceNpGetGamePresenceStatusA(Libraries::UserService::OrbisUserServiceUserId user_id, + OrbisNpGamePresenseStatus* game_status) { + if (game_status == nullptr) { + return ORBIS_NP_ERROR_INVALID_ARGUMENT; + } + + *game_status = + g_signed_in ? OrbisNpGamePresenseStatus::Online : OrbisNpGamePresenseStatus::Offline; + return ORBIS_OK; +} + +s32 PS4_SYSV_ABI sceNpGetAccountId(OrbisNpOnlineId* online_id, u64* account_id) { + LOG_DEBUG(Lib_NpManager, "called"); + if (online_id == nullptr || account_id == nullptr) { + return ORBIS_NP_ERROR_INVALID_ARGUMENT; + } + if (!g_signed_in) { + *account_id = 0; + return ORBIS_NP_ERROR_SIGNED_OUT; + } + *account_id = 0xFEEDFACE; + return ORBIS_OK; +} + +s32 PS4_SYSV_ABI sceNpGetAccountIdA(Libraries::UserService::OrbisUserServiceUserId user_id, + u64* account_id) { + LOG_DEBUG(Lib_NpManager, "user_id {}", user_id); + if (account_id == nullptr) { + return ORBIS_NP_ERROR_INVALID_ARGUMENT; + } + if (!g_signed_in) { + *account_id = 0; + return ORBIS_NP_ERROR_SIGNED_OUT; + } + *account_id = 0xFEEDFACE; + return ORBIS_OK; +} + +s32 PS4_SYSV_ABI sceNpGetNpId(Libraries::UserService::OrbisUserServiceUserId user_id, + OrbisNpId* np_id) { + LOG_DEBUG(Lib_NpManager, "user_id {}", user_id); + if (np_id == nullptr) { + return ORBIS_NP_ERROR_INVALID_ARGUMENT; + } + if (!g_signed_in) { + return ORBIS_NP_ERROR_SIGNED_OUT; + } + memset(np_id, 0, sizeof(OrbisNpId)); + strncpy(np_id->handle.data, Config::getUserName().c_str(), sizeof(np_id->handle.data)); + return ORBIS_OK; +} + +s32 PS4_SYSV_ABI sceNpGetOnlineId(Libraries::UserService::OrbisUserServiceUserId user_id, + OrbisNpOnlineId* online_id) { + LOG_DEBUG(Lib_NpManager, "user_id {}", user_id); + if (online_id == nullptr) { + return ORBIS_NP_ERROR_INVALID_ARGUMENT; + } + if (!g_signed_in) { + return ORBIS_NP_ERROR_SIGNED_OUT; + } + memset(online_id, 0, sizeof(OrbisNpOnlineId)); + strncpy(online_id->data, Config::getUserName().c_str(), sizeof(online_id->data)); + return ORBIS_OK; +} + +s32 PS4_SYSV_ABI sceNpGetNpReachabilityState(Libraries::UserService::OrbisUserServiceUserId user_id, + OrbisNpReachabilityState* state) { + if (state == nullptr) { + return ORBIS_NP_ERROR_INVALID_ARGUMENT; + } + + *state = + g_signed_in ? OrbisNpReachabilityState::Reachable : OrbisNpReachabilityState::Unavailable; + return ORBIS_OK; +} + +s32 PS4_SYSV_ABI sceNpGetState(Libraries::UserService::OrbisUserServiceUserId user_id, + OrbisNpState* state) { + if (state == nullptr) { + return ORBIS_NP_ERROR_INVALID_ARGUMENT; + } + *state = g_signed_in ? OrbisNpState::SignedIn : OrbisNpState::SignedOut; + LOG_DEBUG(Lib_NpManager, "Signed {}", g_signed_in ? "in" : "out"); + return ORBIS_OK; +} + +s32 PS4_SYSV_ABI sceNpHasSignedUp(Libraries::UserService::OrbisUserServiceUserId user_id, + bool* has_signed_up) { + LOG_DEBUG(Lib_NpManager, "called"); + if (has_signed_up == nullptr) { + return ORBIS_NP_ERROR_INVALID_ARGUMENT; + } + *has_signed_up = g_signed_in ? true : false; + return ORBIS_OK; +} + +struct NpStateCallbackForNpToolkit { + OrbisNpStateCallbackForNpToolkit func; + void* userdata; +}; + +NpStateCallbackForNpToolkit NpStateCbForNp; + +s32 PS4_SYSV_ABI sceNpCheckCallback() { + LOG_DEBUG(Lib_NpManager, "(STUBBED) called"); + return ORBIS_OK; +} + +s32 PS4_SYSV_ABI sceNpCheckCallbackForLib() { + LOG_DEBUG(Lib_NpManager, "(STUBBED) called"); + return ORBIS_OK; +} + +s32 PS4_SYSV_ABI sceNpRegisterStateCallbackForToolkit(OrbisNpStateCallbackForNpToolkit callback, + void* userdata) { + static s32 id = 0; + LOG_ERROR(Lib_NpManager, "(STUBBED) called"); + NpStateCbForNp.func = callback; + NpStateCbForNp.userdata = userdata; + return id; +} + +void RegisterLib(Core::Loader::SymbolsResolver* sym) { + g_signed_in = Config::getPSNSignedIn(); + + LIB_FUNCTION("GpLQDNKICac", "libSceNpManager", 1, "libSceNpManager", 1, 1, sceNpCreateRequest); + LIB_FUNCTION("2rsFmlGWleQ", "libSceNpManager", 1, "libSceNpManager", 1, 1, + sceNpCheckNpAvailability); + LIB_FUNCTION("8Z2Jc5GvGDI", "libSceNpManager", 1, "libSceNpManager", 1, 1, + sceNpCheckNpAvailabilityA); + LIB_FUNCTION("KfGZg2y73oM", "libSceNpManager", 1, "libSceNpManager", 1, 1, + sceNpCheckNpReachability); + LIB_FUNCTION("KZ1Mj9yEGYc", "libSceNpManager", 1, "libSceNpManager", 1, 1, + sceNpGetAccountLanguage); + LIB_FUNCTION("TPMbgIxvog0", "libSceNpManager", 1, "libSceNpManager", 1, 1, + sceNpGetAccountLanguageA); + LIB_FUNCTION("ilwLM4zOmu4", "libSceNpManager", 1, "libSceNpManager", 1, 1, + sceNpGetParentalControlInfo); + LIB_FUNCTION("m9L3O6yst-U", "libSceNpManager", 1, "libSceNpManager", 1, 1, + sceNpGetParentalControlInfoA); + LIB_FUNCTION("S7QTn72PrDw", "libSceNpManager", 1, "libSceNpManager", 1, 1, sceNpDeleteRequest); + LIB_FUNCTION("Ghz9iWDUtC4", "libSceNpManager", 1, "libSceNpManager", 1, 1, + sceNpGetAccountCountry); + LIB_FUNCTION("JT+t00a3TxA", "libSceNpManager", 1, "libSceNpManager", 1, 1, + sceNpGetAccountCountryA); + LIB_FUNCTION("8VBTeRf1ZwI", "libSceNpManager", 1, "libSceNpManager", 1, 1, + sceNpGetAccountDateOfBirth); + LIB_FUNCTION("q3M7XzBKC3s", "libSceNpManager", 1, "libSceNpManager", 1, 1, + sceNpGetAccountDateOfBirthA); + LIB_FUNCTION("IPb1hd1wAGc", "libSceNpManager", 1, "libSceNpManager", 1, 1, + sceNpGetGamePresenceStatus); + LIB_FUNCTION("oPO9U42YpgI", "libSceNpManager", 1, "libSceNpManager", 1, 1, + sceNpGetGamePresenceStatusA); + LIB_FUNCTION("e-ZuhGEoeC4", "libSceNpManager", 1, "libSceNpManager", 1, 1, + sceNpGetNpReachabilityState); + + LIB_FUNCTION("a8R9-75u4iM", "libSceNpManager", 1, "libSceNpManager", 1, 1, sceNpGetAccountId); + LIB_FUNCTION("rbknaUjpqWo", "libSceNpManager", 1, "libSceNpManager", 1, 1, sceNpGetAccountIdA); + LIB_FUNCTION("p-o74CnoNzY", "libSceNpManager", 1, "libSceNpManager", 1, 1, sceNpGetNpId); + LIB_FUNCTION("XDncXQIJUSk", "libSceNpManager", 1, "libSceNpManager", 1, 1, sceNpGetOnlineId); + LIB_FUNCTION("eQH7nWPcAgc", "libSceNpManager", 1, "libSceNpManager", 1, 1, sceNpGetState); + LIB_FUNCTION("Oad3rvY-NJQ", "libSceNpManager", 1, "libSceNpManager", 1, 1, sceNpHasSignedUp); + LIB_FUNCTION("3Zl8BePTh9Y", "libSceNpManager", 1, "libSceNpManager", 1, 1, sceNpCheckCallback); + LIB_FUNCTION("JELHf4xPufo", "libSceNpManager", 1, "libSceNpManager", 1, 1, + sceNpCheckCallbackForLib); + LIB_FUNCTION("JELHf4xPufo", "libSceNpManagerForToolkit", 1, "libSceNpManager", 1, 1, + sceNpCheckCallbackForLib); + LIB_FUNCTION("0c7HbXRKUt4", "libSceNpManagerForToolkit", 1, "libSceNpManager", 1, 1, + sceNpRegisterStateCallbackForToolkit); + + LIB_FUNCTION("2rsFmlGWleQ", "libSceNpManagerCompat", 1, "libSceNpManager", 1, 1, + sceNpCheckNpAvailability); + LIB_FUNCTION("a8R9-75u4iM", "libSceNpManagerCompat", 1, "libSceNpManager", 1, 1, + sceNpGetAccountId); + LIB_FUNCTION("KZ1Mj9yEGYc", "libSceNpManagerCompat", 1, "libSceNpManager", 1, 1, + sceNpGetAccountLanguage); + LIB_FUNCTION("Ghz9iWDUtC4", "libSceNpManagerCompat", 1, "libSceNpManager", 1, 1, + sceNpGetAccountCountry); + LIB_FUNCTION("8VBTeRf1ZwI", "libSceNpManagerCompat", 1, "libSceNpManager", 1, 1, + sceNpGetAccountDateOfBirth); + LIB_FUNCTION("IPb1hd1wAGc", "libSceNpManagerCompat", 1, "libSceNpManager", 1, 1, + sceNpGetGamePresenceStatus); + LIB_FUNCTION("ilwLM4zOmu4", "libSceNpManagerCompat", 1, "libSceNpManager", 1, 1, + sceNpGetParentalControlInfo); +}; + +} // namespace Libraries::Np::NpManager diff --git a/src/core/libraries/np/np_manager.h b/src/core/libraries/np/np_manager.h new file mode 100644 index 000000000..f5ae92efc --- /dev/null +++ b/src/core/libraries/np/np_manager.h @@ -0,0 +1,70 @@ +// SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#include "common/types.h" +#include "core/libraries/np/np_error.h" +#include "core/libraries/np/np_types.h" +#include "core/libraries/system/userservice.h" + +namespace Core::Loader { +class SymbolsResolver; +} + +namespace Libraries::Np::NpManager { + +constexpr s32 ORBIS_NP_MANAGER_REQUEST_LIMIT = 0x20; +constexpr s32 ORBIS_NP_MANAGER_REQUEST_ID_OFFSET = 0x20000000; + +enum class OrbisNpState : u32 { + Unknown = 0, + SignedOut = 1, + SignedIn = 2, +}; + +using OrbisNpStateCallbackForNpToolkit = PS4_SYSV_ABI void (*)(s32 userId, OrbisNpState state, + void* userdata); + +enum class OrbisNpRequestState { + None = 0, + Ready = 1, + Complete = 2, +}; + +enum class OrbisNpGamePresenseStatus { + Offline = 0, + Online = 1, +}; + +enum class OrbisNpReachabilityState { + Unavailable = 0, + Available = 1, + Reachable = 2, +}; + +struct OrbisNpCountryCode { + char country_code[2]; + char end; + char pad; +}; + +struct OrbisNpDate { + u16 year; + u8 month; + u8 day; +}; + +struct OrbisNpLanguageCode { + char code[6]; + char padding[10]; +}; + +struct OrbisNpParentalControlInfo { + bool content_restriction; + bool chat_restriction; + bool user_generated_content_restriction; +}; + +void RegisterLib(Core::Loader::SymbolsResolver* sym); +} // namespace Libraries::Np::NpManager diff --git a/src/core/libraries/np_party/np_party.cpp b/src/core/libraries/np/np_party.cpp similarity index 96% rename from src/core/libraries/np_party/np_party.cpp rename to src/core/libraries/np/np_party.cpp index d7390e486..67d6b7afb 100644 --- a/src/core/libraries/np_party/np_party.cpp +++ b/src/core/libraries/np/np_party.cpp @@ -1,13 +1,14 @@ -// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project +// SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later #include "common/logging/log.h" #include "core/libraries/error_codes.h" #include "core/libraries/libs.h" -#include "core/libraries/np_party/np_party.h" -#include "core/libraries/np_party/np_party_error.h" +#include "core/libraries/np/np_error.h" +#include "core/libraries/np/np_party.h" +#include "core/libraries/np/np_party_error.h" -namespace Libraries::NpParty { +namespace Libraries::Np::NpParty { s32 PS4_SYSV_ABI sceNpPartyCheckCallback() { LOG_ERROR(Lib_NpParty, "(STUBBED) called"); @@ -194,4 +195,4 @@ void RegisterLib(Core::Loader::SymbolsResolver* sym) { sceNpPartyShowInvitationList); }; -} // namespace Libraries::NpParty \ No newline at end of file +} // namespace Libraries::Np::NpParty \ No newline at end of file diff --git a/src/core/libraries/np_party/np_party.h b/src/core/libraries/np/np_party.h similarity index 88% rename from src/core/libraries/np_party/np_party.h rename to src/core/libraries/np/np_party.h index d2ff46d11..9cf633217 100644 --- a/src/core/libraries/np_party/np_party.h +++ b/src/core/libraries/np/np_party.h @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project +// SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later #pragma once @@ -9,7 +9,7 @@ namespace Core::Loader { class SymbolsResolver; } -namespace Libraries::NpParty { +namespace Libraries::Np::NpParty { enum class OrbisNpPartyState : u16 { NotInParty = 2, @@ -42,8 +42,6 @@ s32 PS4_SYSV_ABI sceNpPartyShowInvitationList(); s32 PS4_SYSV_ABI sceNpPartyShowInvitationListA(); s32 PS4_SYSV_ABI sceNpPartyTerminate(); s32 PS4_SYSV_ABI sceNpPartyUnregisterPrivateHandler(); -s32 PS4_SYSV_ABI module_start(); -s32 PS4_SYSV_ABI module_stop(); void RegisterLib(Core::Loader::SymbolsResolver* sym); -} // namespace Libraries::NpParty \ No newline at end of file +} // namespace Libraries::Np::NpParty \ No newline at end of file diff --git a/src/core/libraries/np_party/np_party_error.h b/src/core/libraries/np/np_party_error.h similarity index 72% rename from src/core/libraries/np_party/np_party_error.h rename to src/core/libraries/np/np_party_error.h index e2eee5535..7f132e442 100644 --- a/src/core/libraries/np_party/np_party_error.h +++ b/src/core/libraries/np/np_party_error.h @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project +// SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later #pragma once diff --git a/src/core/libraries/np_profiledialog/np_profiledialog.cpp b/src/core/libraries/np/np_profile_dialog.cpp similarity index 94% rename from src/core/libraries/np_profiledialog/np_profiledialog.cpp rename to src/core/libraries/np/np_profile_dialog.cpp index 3bd67b661..fbcf9c0de 100644 --- a/src/core/libraries/np_profiledialog/np_profiledialog.cpp +++ b/src/core/libraries/np/np_profile_dialog.cpp @@ -4,9 +4,9 @@ #include "common/logging/log.h" #include "core/libraries/error_codes.h" #include "core/libraries/libs.h" -#include "core/libraries/np_profiledialog/np_profiledialog.h" +#include "core/libraries/np/np_profile_dialog.h" -namespace Libraries::NpProfileDialog { +namespace Libraries::Np::NpProfileDialog { s32 PS4_SYSV_ABI sceNpProfileDialogOpen() { LOG_ERROR(Lib_NpProfileDialog, "(STUBBED) called"); @@ -69,4 +69,4 @@ void RegisterLib(Core::Loader::SymbolsResolver* sym) { sceNpProfileDialogUpdateStatus); }; -} // namespace Libraries::NpProfileDialog \ No newline at end of file +} // namespace Libraries::Np::NpProfileDialog \ No newline at end of file diff --git a/src/core/libraries/np_profiledialog/np_profiledialog.h b/src/core/libraries/np/np_profile_dialog.h similarity index 87% rename from src/core/libraries/np_profiledialog/np_profiledialog.h rename to src/core/libraries/np/np_profile_dialog.h index 78472f524..ca1126d57 100644 --- a/src/core/libraries/np_profiledialog/np_profiledialog.h +++ b/src/core/libraries/np/np_profile_dialog.h @@ -9,7 +9,7 @@ namespace Core::Loader { class SymbolsResolver; } -namespace Libraries::NpProfileDialog { +namespace Libraries::Np::NpProfileDialog { s32 PS4_SYSV_ABI sceNpProfileDialogOpen(); s32 PS4_SYSV_ABI sceNpProfileDialogClose(); @@ -21,4 +21,4 @@ s32 PS4_SYSV_ABI sceNpProfileDialogTerminate(); s32 PS4_SYSV_ABI sceNpProfileDialogUpdateStatus(); void RegisterLib(Core::Loader::SymbolsResolver* sym); -} // namespace Libraries::NpProfileDialog \ No newline at end of file +} // namespace Libraries::Np::NpProfileDialog \ No newline at end of file diff --git a/src/core/libraries/np_score/np_score.cpp b/src/core/libraries/np/np_score.cpp similarity index 98% rename from src/core/libraries/np_score/np_score.cpp rename to src/core/libraries/np/np_score.cpp index e34c872e7..a271422bd 100644 --- a/src/core/libraries/np_score/np_score.cpp +++ b/src/core/libraries/np/np_score.cpp @@ -1,12 +1,12 @@ -// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project +// SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later #include "common/logging/log.h" #include "core/libraries/error_codes.h" #include "core/libraries/libs.h" -#include "np_score.h" +#include "core/libraries/np/np_score.h" -namespace Libraries::NpScore { +namespace Libraries::Np::NpScore { int PS4_SYSV_ABI sceNpScoreAbortRequest() { LOG_ERROR(Lib_NpScore, "(STUBBED) called"); @@ -380,4 +380,4 @@ void RegisterLib(Core::Loader::SymbolsResolver* sym) { sceNpScoreGetRankingByRangeAsync); }; -} // namespace Libraries::NpScore \ No newline at end of file +} // namespace Libraries::Np::NpScore \ No newline at end of file diff --git a/src/core/libraries/np_score/np_score.h b/src/core/libraries/np/np_score.h similarity index 95% rename from src/core/libraries/np_score/np_score.h rename to src/core/libraries/np/np_score.h index 1429075b4..01cc25f2f 100644 --- a/src/core/libraries/np_score/np_score.h +++ b/src/core/libraries/np/np_score.h @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project +// SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later #pragma once @@ -9,7 +9,7 @@ namespace Core::Loader { class SymbolsResolver; } -namespace Libraries::NpScore { +namespace Libraries::Np::NpScore { int PS4_SYSV_ABI sceNpScoreAbortRequest(); int PS4_SYSV_ABI sceNpScoreCensorComment(); @@ -64,4 +64,4 @@ int PS4_SYSV_ABI sceNpScoreSetTimeout(); int PS4_SYSV_ABI sceNpScoreWaitAsync(); void RegisterLib(Core::Loader::SymbolsResolver* sym); -} // namespace Libraries::NpScore \ No newline at end of file +} // namespace Libraries::Np::NpScore \ No newline at end of file diff --git a/src/core/libraries/np_trophy/np_trophy.cpp b/src/core/libraries/np/np_trophy.cpp similarity index 99% rename from src/core/libraries/np_trophy/np_trophy.cpp rename to src/core/libraries/np/np_trophy.cpp index ed48bb670..20434ce8f 100644 --- a/src/core/libraries/np_trophy/np_trophy.cpp +++ b/src/core/libraries/np/np_trophy.cpp @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project +// SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later #include @@ -8,11 +8,12 @@ #include "common/path_util.h" #include "common/slot_vector.h" #include "core/libraries/libs.h" -#include "core/libraries/np_trophy/np_trophy.h" -#include "core/libraries/np_trophy/np_trophy_error.h" -#include "core/libraries/np_trophy/trophy_ui.h" +#include "core/libraries/np/np_error.h" +#include "core/libraries/np/np_trophy.h" +#include "core/libraries/np/np_trophy_error.h" +#include "core/libraries/np/trophy_ui.h" -namespace Libraries::NpTrophy { +namespace Libraries::Np::NpTrophy { std::string game_serial; @@ -1196,4 +1197,4 @@ void RegisterLib(Core::Loader::SymbolsResolver* sym) { LIB_FUNCTION("+not13BEdVI", "libSceNpTrophy", 1, "libSceNpTrophy", 1, 1, Func_FA7A2DD770447552); }; -} // namespace Libraries::NpTrophy +} // namespace Libraries::Np::NpTrophy diff --git a/src/core/libraries/np_trophy/np_trophy.h b/src/core/libraries/np/np_trophy.h similarity index 98% rename from src/core/libraries/np_trophy/np_trophy.h rename to src/core/libraries/np/np_trophy.h index 1d200242d..449a44bce 100644 --- a/src/core/libraries/np_trophy/np_trophy.h +++ b/src/core/libraries/np/np_trophy.h @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project +// SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later #pragma once @@ -10,7 +10,7 @@ namespace Core::Loader { class SymbolsResolver; } -namespace Libraries::NpTrophy { +namespace Libraries::Np::NpTrophy { extern std::string game_serial; @@ -226,4 +226,4 @@ int PS4_SYSV_ABI Func_F8EF6F5350A91990(); int PS4_SYSV_ABI Func_FA7A2DD770447552(); void RegisterLib(Core::Loader::SymbolsResolver* sym); -} // namespace Libraries::NpTrophy \ No newline at end of file +} // namespace Libraries::Np::NpTrophy \ No newline at end of file diff --git a/src/core/libraries/np_trophy/np_trophy_error.h b/src/core/libraries/np/np_trophy_error.h similarity index 97% rename from src/core/libraries/np_trophy/np_trophy_error.h rename to src/core/libraries/np/np_trophy_error.h index 9506d9ca4..8ac356225 100644 --- a/src/core/libraries/np_trophy/np_trophy_error.h +++ b/src/core/libraries/np/np_trophy_error.h @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project +// SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later #pragma once diff --git a/src/core/libraries/np/np_types.h b/src/core/libraries/np/np_types.h new file mode 100644 index 000000000..ac045954c --- /dev/null +++ b/src/core/libraries/np/np_types.h @@ -0,0 +1,26 @@ +// SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#include "common/types.h" +#include "core/libraries/error_codes.h" + +// For structs and constants shared between multiple Np libraries. +namespace Libraries::Np { + +constexpr s32 ORBIS_NP_ONLINEID_MAX_LENGTH = 16; + +struct OrbisNpOnlineId { + char data[ORBIS_NP_ONLINEID_MAX_LENGTH]; + s8 term; + s8 dummy[3]; +}; + +struct OrbisNpId { + OrbisNpOnlineId handle; + u8 opt[8]; + u8 reserved[8]; +}; + +}; // namespace Libraries::Np \ No newline at end of file diff --git a/src/core/libraries/np_web_api/np_web_api.cpp b/src/core/libraries/np/np_web_api.cpp similarity index 99% rename from src/core/libraries/np_web_api/np_web_api.cpp rename to src/core/libraries/np/np_web_api.cpp index a7c0cdc62..570e47f76 100644 --- a/src/core/libraries/np_web_api/np_web_api.cpp +++ b/src/core/libraries/np/np_web_api.cpp @@ -1,12 +1,12 @@ -// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project +// SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later #include "common/logging/log.h" #include "core/libraries/error_codes.h" #include "core/libraries/libs.h" -#include "core/libraries/np_web_api/np_web_api.h" +#include "core/libraries/np/np_web_api.h" -namespace Libraries::NpWebApi { +namespace Libraries::Np::NpWebApi { s32 PS4_SYSV_ABI sceNpWebApiCreateContext() { LOG_ERROR(Lib_NpWebApi, "(STUBBED) called"); @@ -689,4 +689,4 @@ void RegisterLib(Core::Loader::SymbolsResolver* sym) { LIB_FUNCTION("+aMuhoVidDY", "libSceNpWebApi", 1, "libSceNpWebApi", 1, 1, Func_F9A32E8685627436); }; -} // namespace Libraries::NpWebApi \ No newline at end of file +} // namespace Libraries::Np::NpWebApi \ No newline at end of file diff --git a/src/core/libraries/np_web_api/np_web_api.h b/src/core/libraries/np/np_web_api.h similarity index 97% rename from src/core/libraries/np_web_api/np_web_api.h rename to src/core/libraries/np/np_web_api.h index bb3bcbb60..6679662cb 100644 --- a/src/core/libraries/np_web_api/np_web_api.h +++ b/src/core/libraries/np/np_web_api.h @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project +// SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later #pragma once @@ -9,7 +9,7 @@ namespace Core::Loader { class SymbolsResolver; } -namespace Libraries::NpWebApi { +namespace Libraries::Np::NpWebApi { s32 PS4_SYSV_ABI sceNpWebApiCreateContext(); s32 PS4_SYSV_ABI sceNpWebApiCreatePushEventFilter(); @@ -113,4 +113,4 @@ s32 PS4_SYSV_ABI Func_E789F980D907B653(); s32 PS4_SYSV_ABI Func_F9A32E8685627436(); void RegisterLib(Core::Loader::SymbolsResolver* sym); -} // namespace Libraries::NpWebApi \ No newline at end of file +} // namespace Libraries::Np::NpWebApi \ No newline at end of file diff --git a/src/core/libraries/np_trophy/trophy_ui.cpp b/src/core/libraries/np/trophy_ui.cpp similarity index 98% rename from src/core/libraries/np_trophy/trophy_ui.cpp rename to src/core/libraries/np/trophy_ui.cpp index 57090be90..94e7eb5f2 100644 --- a/src/core/libraries/np_trophy/trophy_ui.cpp +++ b/src/core/libraries/np/trophy_ui.cpp @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project +// SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later #include @@ -17,13 +17,13 @@ #include "common/config.h" #include "common/path_util.h" #include "common/singleton.h" +#include "core/libraries/np/trophy_ui.h" #include "imgui/imgui_std.h" -#include "trophy_ui.h" CMRC_DECLARE(res); namespace fs = std::filesystem; using namespace ImGui; -namespace Libraries::NpTrophy { +namespace Libraries::Np::NpTrophy { std::optional current_trophy_ui; std::queue trophy_queue; @@ -326,4 +326,4 @@ void AddTrophyToQueue(const std::filesystem::path& trophyIconPath, const std::st } } -} // namespace Libraries::NpTrophy +} // namespace Libraries::Np::NpTrophy diff --git a/src/core/libraries/np_trophy/trophy_ui.h b/src/core/libraries/np/trophy_ui.h similarity index 84% rename from src/core/libraries/np_trophy/trophy_ui.h rename to src/core/libraries/np/trophy_ui.h index 553c99f6f..fbadac8f4 100644 --- a/src/core/libraries/np_trophy/trophy_ui.h +++ b/src/core/libraries/np/trophy_ui.h @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project +// SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later #pragma once @@ -9,11 +9,11 @@ #include "common/fixed_value.h" #include "common/types.h" -#include "core/libraries/np_trophy/np_trophy.h" +#include "core/libraries/np/np_trophy.h" #include "imgui/imgui_layer.h" #include "imgui/imgui_texture.h" -namespace Libraries::NpTrophy { +namespace Libraries::Np::NpTrophy { class TrophyUI final : public ImGui::Layer { public: @@ -41,4 +41,4 @@ struct TrophyInfo { void AddTrophyToQueue(const std::filesystem::path& trophyIconPath, const std::string& trophyName, const std::string_view& rarity); -}; // namespace Libraries::NpTrophy +}; // namespace Libraries::Np::NpTrophy diff --git a/src/core/libraries/np_common/np_common.cpp b/src/core/libraries/np_common/np_common.cpp deleted file mode 100644 index 4c68fbf7a..000000000 --- a/src/core/libraries/np_common/np_common.cpp +++ /dev/null @@ -1,7915 +0,0 @@ -// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project -// SPDX-License-Identifier: GPL-2.0-or-later - -#include "common/logging/log.h" -#include "core/libraries/error_codes.h" -#include "core/libraries/libs.h" -#include "core/libraries/np_common/np_common.h" -#include "core/libraries/np_common/np_common_error.h" - -namespace Libraries::NpCommon { - -int PS4_SYSV_ABI sceNpCmpNpId(OrbisNpId* np_id1, OrbisNpId* np_id2) { - if (np_id1 == nullptr || np_id2 == nullptr) { - return ORBIS_NP_ERROR_INVALID_ARGUMENT; - } - - // Compare data - if (std::strncmp(np_id1->handle.data, np_id2->handle.data, ORBIS_NP_ONLINEID_MAX_LENGTH) != 0) { - return ORBIS_NP_UTIL_ERROR_NOT_MATCH; - } - - // Compare opt - for (u32 i = 0; i < 8; i++) { - if (np_id1->opt[i] != np_id2->opt[i]) { - return ORBIS_NP_UTIL_ERROR_NOT_MATCH; - } - } - - // Compare reserved - for (u32 i = 0; i < 8; i++) { - if (np_id1->reserved[i] != np_id2->reserved[i]) { - return ORBIS_NP_UTIL_ERROR_NOT_MATCH; - } - } - - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpCmpNpIdInOrder(OrbisNpId* np_id1, OrbisNpId* np_id2, u32* out_result) { - if (np_id1 == nullptr || np_id2 == nullptr || out_result == nullptr) { - return ORBIS_NP_ERROR_INVALID_ARGUMENT; - } - - // Compare data - u32 compare = - std::strncmp(np_id1->handle.data, np_id2->handle.data, ORBIS_NP_ONLINEID_MAX_LENGTH); - if (compare < 0) { - *out_result = -1; - return ORBIS_OK; - } else if (compare > 0) { - *out_result = 1; - return ORBIS_OK; - } - - // Compare opt - for (u32 i = 0; i < 8; i++) { - if (np_id1->opt[i] < np_id2->opt[i]) { - *out_result = -1; - return ORBIS_OK; - } else if (np_id1->opt[i] > np_id2->opt[i]) { - *out_result = 1; - return ORBIS_OK; - } - } - - // Compare reserved - for (u32 i = 0; i < 8; i++) { - if (np_id1->reserved[i] < np_id2->reserved[i]) { - *out_result = -1; - return ORBIS_OK; - } else if (np_id1->reserved[i] > np_id2->reserved[i]) { - *out_result = 1; - return ORBIS_OK; - } - } - - *out_result = 0; - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpCmpOnlineId(OrbisNpOnlineId* online_id1, OrbisNpOnlineId* online_id2) { - if (online_id1 == nullptr || online_id2 == nullptr) { - return ORBIS_NP_ERROR_INVALID_ARGUMENT; - } - - if (std::strncmp(online_id1->data, online_id2->data, ORBIS_NP_ONLINEID_MAX_LENGTH) != 0) { - return ORBIS_NP_UTIL_ERROR_NOT_MATCH; - } - return ORBIS_OK; -} - -int PS4_SYSV_ABI _sceNpAllocatorExConvertAllocator() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _sceNpAllocatorExFree() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _sceNpAllocatorExMalloc() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _sceNpAllocatorExRealloc() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _sceNpAllocatorExStrdup() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _sceNpAllocatorExStrndup() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _sceNpAllocatorFree() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _sceNpAllocatorMalloc() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _sceNpAllocatorRealloc() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _sceNpAllocatorStrdup() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _sceNpAllocatorStrndup() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _sceNpFree() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _sceNpHeapFree() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _sceNpHeapMalloc() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _sceNpHeapRealloc() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _sceNpHeapStrdup() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _sceNpHeapStrndup() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _sceNpMalloc() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _sceNpRealloc() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10Cancelable10IsCanceledEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10Cancelable10LockCancelEPKciS3_() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10Cancelable11CheckCancelEPKciS3_() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10Cancelable12UnlockCancelEPKciS3_() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10Cancelable13SetCancelableEb() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10Cancelable14SetupSubCancelEPS1_PKciS4_() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10Cancelable16CleanupSubCancelEPS1_() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10Cancelable4InitEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10Cancelable6CancelEij() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10Cancelable7DestroyEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10CancelableC2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10CancelableD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10CancelableD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10CancelableD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10CancelLock3EndEPKciS3_() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10CancelLock5BeginEPNS0_6HandleEPKciS5_() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10CancelLockC1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10CancelLockC2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10CancelLockD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10CancelLockD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10EventQueue10ClearAbortEt() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10EventQueue10TryDequeueEPvm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10EventQueue4ctorEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10EventQueue4dtorEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10EventQueue4InitEPKcmm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10EventQueue5AbortEt() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10EventQueue7DequeueEPvmj() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10EventQueue7DestroyEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10EventQueue7EnqueueEPKvmj() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10EventQueueC2EP16SceNpAllocatorEx() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10EventQueueD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10EventQueueD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10EventQueueD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10JsonNumber5ClearEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10JsonNumber6SetNumEi() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10JsonNumber6SetNumEj() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10JsonNumber6SetNumEl() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10JsonNumber6SetNumEm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10JsonNumber6SetNumEPKc() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10JsonObject16DeleteFieldValueEPKc() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10JsonObject5ClearEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10JsonParser4InitEPK7JsonDefPNS1_12EventHandlerE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10JsonParser5ParseEPKcm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10JsonParserC2EP16SceNpAllocatorEx() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10JsonParserD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10JsonParserD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10JsonParserD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10JsonString5ClearEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10JsonString6SetStrEPKc() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10MemoryFile4ReadEPNS0_6HandleEPvmPm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10MemoryFile4SyncEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10MemoryFile5CloseEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10MemoryFile5WriteEPNS0_6HandleEPKvmPm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10MemoryFile8TruncateEl() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10MemoryFileC2EP16SceNpAllocatorEx() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10MemoryFileD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10MemoryFileD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10MemoryFileD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI -_ZN3sce2np12HttpTemplate19SetAuthInfoCallbackEPFii15SceHttpAuthTypePKcPcS5_iPPhPmPiPvESA_() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np12HttpTemplate4InitEiPKcib() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np12HttpTemplate7DestroyEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np12HttpTemplateC1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np12HttpTemplateC2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np12HttpTemplateD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np12HttpTemplateD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np12HttpTemplateD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np12StreamBufferixEi() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np12StreamReader4ReadEPNS0_6HandleEPNS0_9StreamCtxEPvmPm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np12StreamReader7ReadAllEPNS0_6HandleEPNS0_9StreamCtxEPvmPm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np12StreamReader7ReadAllEPNS0_6HandleEPvmPm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np12StreamReader8ReadDataEPNS0_6HandleEPNS0_9StreamCtxEPvmPm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np12StreamReader8ReadDataEPNS0_6HandleEPvmPm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np12StreamReader8SkipDataEPNS0_6HandleElPl() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np12StreamReader8SkipDataEPNS0_6HandleEPNS0_9StreamCtxElPl() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np12StreamWriter15WriteFilledDataEPNS0_6HandleEcl() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np12StreamWriter15WriteFilledDataEPNS0_6HandleEPNS0_9StreamCtxEcl() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np12StreamWriter5WriteEPNS0_6HandleEPNS0_9StreamCtxEPKvmPm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np12StreamWriter9WriteDataEPNS0_6HandleEPKvmPm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np12StreamWriter9WriteDataEPNS0_6HandleEPNS0_9StreamCtxEPKvmPm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np12WorkerThread10ThreadMainEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np12WorkerThreadC1EPNS0_9WorkQueueE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np12WorkerThreadC2EPNS0_9WorkQueueE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np12WorkerThreadD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np12WorkerThreadD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np12WorkerThreadD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np13JsonDocParser5ParseEPKcm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np13JsonDocParser9GetResultEPPNS0_10JsonObjectE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np13JsonDocParser9GetResultEPPNS0_9JsonValueE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np13JsonDocParserC2EP16SceNpAllocatorExPK7JsonDef() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np13JsonDocParserD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np13JsonDocParserD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np13JsonDocParserD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np13NpTitleSecret5ClearEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np13NpTitleSecretC1EPKvm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np13NpTitleSecretC1ERK16SceNpTitleSecret() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np13NpTitleSecretC1ERKS1_() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np13NpTitleSecretC1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np13NpTitleSecretC2EPKvm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np13NpTitleSecretC2ERK16SceNpTitleSecret() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np13NpTitleSecretC2ERKS1_() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np13NpTitleSecretC2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np13NpTitleSecretD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np13NpTitleSecretD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np13NpTitleSecretD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np13RingBufMemory4ctorEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np13RingBufMemory4dtorEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np13RingBufMemory4InitEm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np13RingBufMemory6ExpandEm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np13RingBufMemory6IsInitEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np13RingBufMemory7DestroyEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np13RingBufMemoryC2EP16SceNpAllocatorEx() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np13RingBufMemoryD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np13RingBufMemoryD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np13RingBufMemoryD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np14CalloutContext4InitEPKcimm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np14CalloutContext4InitEPKNS1_5ParamE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np14CalloutContext7DestroyEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np14CalloutContextC1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np14CalloutContextC2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np14CalloutContextD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np14CalloutContextD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np14CalloutContextD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np14JsonDocBuilder12BuildBufSizeEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np14JsonDocBuilder16EscapeJsonStringEPKcPcmPm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np14JsonDocBuilder23EscapeJsonStringBufSizeEPKc() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np14JsonDocBuilder5BuildEPcmPm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np14JsonDocBuilderC1ERKNS0_9JsonValueE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np14JsonDocBuilderC2ERKNS0_9JsonValueE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np14JsonDocBuilderD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np14JsonDocBuilderD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np14JsonDocBuilderD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np15CancelableScope3EndEiPKciS3_() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np15CancelableScope5BeginEPNS0_6HandleEPKciS5_() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np15CancelableScopeC2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np15CancelableScopeD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np15CancelableScopeD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np15CancelableScopeD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np16StreamReadBufferC2EP16SceNpAllocatorEx() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np16StreamReadBufferD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np16StreamReadBufferD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np18HttpConnectionPool13InvalidateAllEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np18HttpConnectionPool4InitEi() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np18HttpConnectionPool7DestroyEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np18HttpConnectionPoolC1EP16SceNpAllocatorEx() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np18HttpConnectionPoolC2EP16SceNpAllocatorEx() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np18HttpConnectionPoolD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np18HttpConnectionPoolD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np18HttpConnectionPoolD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np18MemoryStreamReader4ReadEPNS0_6HandleEPvmPm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np18MemoryStreamReaderC1EPKvm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np18MemoryStreamReaderC2EPKvm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np18MemoryStreamReaderD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np18MemoryStreamReaderD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np18MemoryStreamReaderD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np18MemoryStreamWriter5WriteEPNS0_6HandleEPKvmPm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np18MemoryStreamWriterC1EPvm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np18MemoryStreamWriterC2EPvm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np18MemoryStreamWriterD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np18MemoryStreamWriterD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np18MemoryStreamWriterD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np20BufferedStreamReader4ReadEPNS0_6HandleEPvmPm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np20BufferedStreamReader5CloseEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np20BufferedStreamReaderC2EP16SceNpAllocatorEx() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np20BufferedStreamReaderD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np20BufferedStreamReaderD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np20BufferedStreamReaderD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc10IpmiClient10DisconnectEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc10IpmiClient11IsConnectedEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc10IpmiClient16invokeSyncMethodEjPKvmPvPmm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc10IpmiClient4ctorEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc10IpmiClient4dtorEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc10IpmiClient4InitEPKNS2_6ConfigE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc10IpmiClient7ConnectEPKvm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc10IpmiClient7DestroyEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc10IpmiClientC1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc10IpmiClientC2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc10IpmiClientD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc10IpmiClientD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc10IpmiClientD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI -_ZN3sce2np3ipc13ServiceClientC1EPNS1_17ServiceIpmiClientEPKNS1_17ServiceClientInfoE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI -_ZN3sce2np3ipc13ServiceClientC2EPNS1_17ServiceIpmiClientEPKNS1_17ServiceClientInfoE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient10DisconnectEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient10EndRequestEii() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient11findServiceEi() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient11InitServiceEi() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient11TermServiceEi() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient11WaitRequestEiij() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient12AbortRequestEii() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient12BeginRequestEii() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient13CreateRequestEPiiPKvm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient13DeleteRequestEii() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient13PollEventFlagEijmjPm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient13WaitEventFlagEijmjPmj() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient14PollEventQueueEiPvm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient15CancelEventFlagEijm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient15RegisterServiceEPKNS1_17ServiceClientInfoE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient16RegisterServicesEPKNS1_17ServiceClientInfoE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient17invokeInitServiceEi() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient17invokeTermServiceEi() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient17UnregisterServiceEi() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient18EndRequestForAsyncEii() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient19WaitRequestForAsyncEiij() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient20AbortRequestForAsyncEii() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI -_ZN3sce2np3ipc17ServiceIpmiClient20BeginRequestForAsyncEiiPN4IPMI6Client12EventNotifeeE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient21CreateRequestForAsyncEPiiPKvm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient21DeleteRequestForAsyncEii() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient4ctorEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient4dtorEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient4InitEPNS2_6ConfigE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient7ConnectEPKvm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient7DestroyEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClientC1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClientC2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClientD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClientD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClientD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4Cond4ctorEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4Cond4dtorEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4Cond4InitEPKcPNS0_5MutexE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4Cond4WaitEj() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4Cond6SignalEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4Cond7DestroyEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4Cond9SignalAllEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4CondC1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4CondC2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4CondD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4CondD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4CondD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4Path11BuildAppendEPcmcPKcm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4Path12AddDelimiterEPcmc() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4Path5ClearEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4Path6SetStrEPKcm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4PathD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4PathD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4PathD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4Time10AddMinutesEl() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4Time10AddSecondsEl() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4Time12GetUserClockEPS1_() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4Time15AddMicroSecondsEl() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4Time15GetNetworkClockEPS1_() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4Time20GetDebugNetworkClockEPS1_() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4Time7AddDaysEl() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4Time8AddHoursEl() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4TimeplERK10SceRtcTick() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4TimeplERKS1_() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np5Mutex4ctorEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np5Mutex4dtorEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np5Mutex4InitEPKcj() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np5Mutex4LockEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np5Mutex6UnlockEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np5Mutex7DestroyEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np5Mutex7TryLockEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np5MutexC1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np5MutexC2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np5MutexD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np5MutexD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np5MutexD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np5NpEnv8GetNpEnvEPS1_() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np6Handle10CancelImplEi() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np6Handle4InitEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np6Handle7DestroyEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np6HandleC1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np6HandleC2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np6HandleD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np6HandleD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np6HandleD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np6ObjectdaEPv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np6ObjectdaEPvR14SceNpAllocator() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np6ObjectdaEPvR16SceNpAllocatorEx() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np6ObjectdlEPv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np6ObjectdlEPvR14SceNpAllocator() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np6ObjectdlEPvR16SceNpAllocatorEx() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np6ObjectnaEmR14SceNpAllocator() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np6ObjectnaEmR16SceNpAllocatorEx() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np6ObjectnwEmR14SceNpAllocator() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np6ObjectnwEmR16SceNpAllocatorEx() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np6Thread12DoThreadMainEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np6Thread4ctorEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np6Thread4dtorEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np6Thread4InitEPKcimm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np6Thread4InitEPKNS1_5ParamE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np6Thread4JoinEPi() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np6Thread5StartEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np6Thread7DestroyEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np6Thread9EntryFuncEPv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np6Thread9GetResultEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np6Thread9IsRunningEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np6ThreadC2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np6ThreadD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np6ThreadD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np6ThreadD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np7Callout10IsTimedoutEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np7Callout11CalloutFuncEPv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np7Callout4StopEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np7Callout5StartEjPNS1_7HandlerE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np7Callout5StartEmPNS1_7HandlerE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np7Callout9IsStartedEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np7CalloutC1EPNS0_14CalloutContextE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np7CalloutC2EPNS0_14CalloutContextE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np7CalloutD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np7CalloutD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np7CalloutD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np7HttpUri5BuildEPKS1_PcmPmj() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np7HttpUri5ParseEPS1_PKc() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np7HttpUriC1EP16SceNpAllocatorEx() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np7HttpUriC2EP16SceNpAllocatorEx() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np7HttpUriD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np7HttpUriD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np7HttpUriD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np7RingBuf14CheckinForReadEm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np7RingBuf15CheckinForWriteEm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np7RingBuf15CheckoutForReadEPm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np7RingBuf16CheckoutForWriteEPm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np7RingBuf4ctorEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np7RingBuf4dtorEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np7RingBuf4InitEPvm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np7RingBuf4PeekEmPvm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np7RingBuf4ReadEPvm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np7RingBuf5ClearEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np7RingBuf5WriteEPKvm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np7RingBuf7DestroyEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np7RingBufC1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np7RingBufC2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np7RingBufD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np7RingBufD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np7RingBufD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8HttpFile4ReadEPNS0_6HandleEPvmPm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8HttpFile5CloseEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8HttpFileC2EP16SceNpAllocatorEx() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8HttpFileD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8HttpFileD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8HttpFileD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8JsonBool5ClearEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8JsonBool7SetBoolEb() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8JsonFile5CloseEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8JsonFileD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8JsonFileD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8JsonFileD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8JsonNull5ClearEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8NpCommId5BuildERKS1_Pcm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8NpCommId5ClearEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8NpCommId5ParseEPS1_PKc() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8NpCommId5ParseEPS1_PKcm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8NpCommIdC1ERK20SceNpCommunicationId() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8NpCommIdC1ERKS1_() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8NpCommIdC1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8NpCommIdC2ERK20SceNpCommunicationId() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8NpCommIdC2ERKS1_() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8NpCommIdC2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8NpCommIdD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8NpCommIdD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8NpCommIdD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8Selector4InitEPKc() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8SelectorD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8SelectorD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8SelectorD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8WorkItem10SetPendingEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8WorkItem10SetRunningEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8WorkItem11SetFinishedEi() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8WorkItem14FinishCallbackEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8WorkItem15RemoveFromQueueEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8WorkItem6CancelEi() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8WorkItem9BindQueueEPNS0_9WorkQueueEi() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8WorkItemC2EPKc() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8WorkItemD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8WorkItemD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8WorkItemD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9EventFlag3SetEm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9EventFlag4ctorEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9EventFlag4dtorEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9EventFlag4OpenEPKc() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9EventFlag4PollEmjPm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9EventFlag4WaitEmjPmj() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9EventFlag5ClearEm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9EventFlag6CancelEm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9EventFlag6CreateEPKcj() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9EventFlag7DestroyEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9EventFlagC1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9EventFlagC2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9EventFlagD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9EventFlagD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9EventFlagD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9HttpTrans10SetTimeoutEPKNS1_12TimeoutParamE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9HttpTrans11SendRequestEPNS0_6HandleEPKvm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9HttpTrans12RecvResponseEPNS0_6HandleEPvmPm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9HttpTrans12SkipResponseEPNS0_6HandleE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9HttpTrans16AddRequestHeaderEPKcS3_() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9HttpTrans16SetRequestHeaderEPKcS3_() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9HttpTrans21GetResponseStatusCodeEPNS0_6HandleEPi() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9HttpTrans21SetRequestContentTypeEPKc() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9HttpTrans23SetRequestContentLengthEm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9HttpTrans24GetResponseContentLengthEPNS0_6HandleEPbPm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9HttpTrans4InitERKNS0_12HttpTemplateEPNS0_18HttpConnectionPoolEiPKcm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI -_ZN3sce2np9HttpTrans4InitERKNS0_12HttpTemplateEPNS0_18HttpConnectionPoolEiPKcS8_tS8_m() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9HttpTrans4ReadEPNS0_6HandleEPvmPm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9HttpTrans5WriteEPNS0_6HandleEPKvmPm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9HttpTrans7DestroyEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9HttpTransC1EP16SceNpAllocatorEx() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9HttpTransC2EP16SceNpAllocatorEx() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9HttpTransD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9HttpTransD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9HttpTransD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9JsonArray12AddItemArrayEPPS1_() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9JsonArray5ClearEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9JsonValue12GetItemValueEi() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9JsonValue13GetFieldValueEiPPKc() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9JsonValue13GetFieldValueEPKc() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9JsonValueD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9JsonValueD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9JsonValueD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9LocalFile4ReadEPNS0_6HandleEPvmPm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9LocalFile4SeekEliPl() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9LocalFile4SyncEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9LocalFile5CloseEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9LocalFile5WriteEPNS0_6HandleEPKvmPm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9LocalFile6RemoveEPKc() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9LocalFile8TruncateEl() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9LocalFileC1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9LocalFileC2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9LocalFileD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9LocalFileD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9LocalFileD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9NpTitleId5BuildERKS1_Pcm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9NpTitleId5ClearEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9NpTitleId5ParseEPS1_PKc() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9NpTitleId5ParseEPS1_PKcm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9NpTitleIdC1ERK12SceNpTitleId() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9NpTitleIdC1ERKS1_() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9NpTitleIdC1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9NpTitleIdC2ERK12SceNpTitleId() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9NpTitleIdC2ERKS1_() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9NpTitleIdC2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9NpTitleIdD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9NpTitleIdD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9NpTitleIdD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9RefObject6AddRefEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9RefObject7ReleaseEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9RefObjectC1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9RefObjectC2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9RefObjectD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9RefObjectD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9RefObjectD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9Semaphore4OpenEPKc() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9Semaphore4WaitEj() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9Semaphore6CreateEiiPKc() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9Semaphore6SignalEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9Semaphore7DestroyEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9SemaphoreC1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9SemaphoreC2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9SemaphoreD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9SemaphoreD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9SemaphoreD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9WorkQueue11GetItemByIdEi() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9WorkQueue15GetFinishedItemENS0_14WorkItemStatusE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9WorkQueue16WorkItemFinishedEPNS0_8WorkItemEi() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9WorkQueue17ProcFinishedItemsENS0_14WorkItemStatusE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9WorkQueue18RemoveFinishedItemEPNS0_8WorkItemE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9WorkQueue18WaitForPendingItemEPPNS0_8WorkItemEPb() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9WorkQueue4ctorEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9WorkQueue4dtorEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9WorkQueue4InitEPKcimm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9WorkQueue4InitEPKNS0_6Thread5ParamE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9WorkQueue4StopEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9WorkQueue5StartEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9WorkQueue6CancelEii() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9WorkQueue6IsInitEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9WorkQueue7DestroyEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9WorkQueue7EnqueueEiPNS0_8WorkItemE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9WorkQueue9CancelAllEi() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9WorkQueue9IsRunningEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9WorkQueueC1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9WorkQueueC2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9WorkQueueD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9WorkQueueD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np9WorkQueueD2Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npeqERK10SceRtcTickRKNS0_4TimeE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npeqERK12SceNpTitleIdRKNS0_9NpTitleIdE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npeqERK16SceNpTitleSecretRKNS0_13NpTitleSecretE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npeqERK20SceNpCommunicationIdRKNS0_8NpCommIdE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npeqERKNS0_13NpTitleSecretERK16SceNpTitleSecret() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npeqERKNS0_13NpTitleSecretES3_() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npeqERKNS0_4TimeERK10SceRtcTick() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npeqERKNS0_4TimeES3_() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npeqERKNS0_8NpCommIdERK20SceNpCommunicationId() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npeqERKNS0_8NpCommIdES3_() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npeqERKNS0_9NpTitleIdERK12SceNpTitleId() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npeqERKNS0_9NpTitleIdES3_() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npgeERK10SceRtcTickRKNS0_4TimeE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npgeERKNS0_4TimeERK10SceRtcTick() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npgeERKNS0_4TimeES3_() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npgtERK10SceRtcTickRKNS0_4TimeE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npgtERKNS0_4TimeERK10SceRtcTick() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npgtERKNS0_4TimeES3_() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npleERK10SceRtcTickRKNS0_4TimeE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npleERKNS0_4TimeERK10SceRtcTick() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npleERKNS0_4TimeES3_() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npltERK10SceRtcTickRKNS0_4TimeE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npltERKNS0_4TimeERK10SceRtcTick() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npltERKNS0_4TimeES3_() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npneERK10SceRtcTickRKNS0_4TimeE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npneERK12SceNpTitleIdRKNS0_9NpTitleIdE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npneERK16SceNpTitleSecretRKNS0_13NpTitleSecretE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npneERK20SceNpCommunicationIdRKNS0_8NpCommIdE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npneERKNS0_13NpTitleSecretERK16SceNpTitleSecret() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npneERKNS0_13NpTitleSecretES3_() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npneERKNS0_4TimeERK10SceRtcTick() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npneERKNS0_4TimeES3_() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npneERKNS0_8NpCommIdERK20SceNpCommunicationId() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npneERKNS0_8NpCommIdES3_() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npneERKNS0_9NpTitleIdERK12SceNpTitleId() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npneERKNS0_9NpTitleIdES3_() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np10Cancelable6IsInitEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np10EventQueue6IsInitEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np10EventQueue7IsEmptyEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np10JsonNumber5CloneEP16SceNpAllocatorEx() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np10JsonNumber6GetNumEPcm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np10JsonNumber6GetNumEPi() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np10JsonNumber6GetNumEPj() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np10JsonNumber6GetNumEPl() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np10JsonNumber6GetNumEPm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np10JsonNumber9GetNumStrEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np10JsonObject5CloneEP16SceNpAllocatorEx() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np10JsonString5CloneEP16SceNpAllocatorEx() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np10JsonString6GetStrEPcm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np10JsonString6GetStrEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np10JsonString9GetLengthEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np12HttpTemplate6IsInitEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np18HttpConnectionPool6IsInitEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np3ipc10IpmiClient6IsInitEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np3ipc17ServiceIpmiClient6IsInitEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np4Cond6IsInitEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np4Time18ConvertToPosixTimeEPl() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np5Mutex6IsInitEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np6Handle6IsInitEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np6Thread6IsInitEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np7RingBuf11GetDataSizeEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np7RingBuf11GetFreeSizeEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np7RingBuf6IsFullEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np7RingBuf7IsEmptyEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np8JsonBool5CloneEP16SceNpAllocatorEx() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np8JsonBool7GetBoolEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np8JsonNull5CloneEP16SceNpAllocatorEx() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np8NpCommId7IsEmptyEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np9EventFlag6IsInitEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np9HttpTrans6IsInitEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np9JsonArray5CloneEP16SceNpAllocatorEx() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np9JsonValue12GetItemValueEi() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np9NpTitleId7IsEmptyEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np9Semaphore6IsInitEv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZThn16_N3sce2np10MemoryFile5WriteEPNS0_6HandleEPKvmPm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZThn16_N3sce2np10MemoryFileD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZThn16_N3sce2np10MemoryFileD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZThn16_N3sce2np9HttpTrans5WriteEPNS0_6HandleEPKvmPm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZThn16_N3sce2np9HttpTransD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZThn16_N3sce2np9HttpTransD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZThn16_N3sce2np9LocalFile5WriteEPNS0_6HandleEPKvmPm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZThn16_N3sce2np9LocalFileD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZThn16_N3sce2np9LocalFileD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZThn8_N3sce2np10MemoryFile4ReadEPNS0_6HandleEPvmPm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZThn8_N3sce2np10MemoryFileD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZThn8_N3sce2np10MemoryFileD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZThn8_N3sce2np6Handle10CancelImplEi() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZThn8_N3sce2np6HandleD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZThn8_N3sce2np6HandleD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZThn8_N3sce2np9HttpTrans4ReadEPNS0_6HandleEPvmPm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZThn8_N3sce2np9HttpTransD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZThn8_N3sce2np9HttpTransD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZThn8_N3sce2np9LocalFile4ReadEPNS0_6HandleEPvmPm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZThn8_N3sce2np9LocalFileD0Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZThn8_N3sce2np9LocalFileD1Ev() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZTVN3sce2np10JsonNumberE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZTVN3sce2np10JsonObjectE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZTVN3sce2np10JsonStringE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZTVN3sce2np8JsonBoolE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZTVN3sce2np8JsonNullE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZTVN3sce2np8SelectorE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZTVN3sce2np9JsonArrayE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZTVN3sce2np9JsonValueE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAllocateKernelMemoryNoAlignment() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAllocateKernelMemoryWithAlignment() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpArchInit() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpArchTerm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAtomicCas32() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAtomicDec32() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAtomicInc32() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpBase64Decoder() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpBase64Encoder() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpBase64GetDecodeSize() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpBase64UrlDecoder() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpBase64UrlEncoder() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpBase64UrlGetDecodeSize() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpCalloutInitCtx() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpCalloutStartOnCtx() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpCalloutStartOnCtx64() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpCalloutStopOnCtx() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpCalloutTermCtx() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpCancelEventFlag() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpClearEventFlag() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpCloseEventFlag() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpCloseSema() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpCondDestroy() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpCondInit() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpCondSignal() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpCondSignalAll() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpCondSignalTo() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpCondTimedwait() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpCondWait() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpCreateEventFlag() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpCreateSema() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpCreateThread() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpDbgAssignDebugId() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpDbgDumpBinary() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpDbgDumpText() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpDeleteEventFlag() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpDeleteSema() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpEventGetCurrentNetworkTick() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpFreeKernelMemory() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpGetNavSdkVersion() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpGetPlatformType() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpGetProcessId() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpGetRandom() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpGetSdkVersion() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpGetSdkVersionUInt() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpGetSystemClockUsec() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpGlobalHeapGetAllocator() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpGlobalHeapGetAllocatorEx() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpGlobalHeapGetAllocatorExPtr() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpGlobalHeapGetAllocatorPtr() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpHeapDestroy() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpHeapGetAllocator() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpHeapGetStat() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpHeapInit() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpHeapShowStat() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpHexToInt() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpInt32ToStr() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpInt64ToStr() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpIntGetPlatformType() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpIntIsOnlineIdString() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpIntIsValidOnlineId() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpIntSetPlatformType() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpIntToHex() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpIpc2ClientInit() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpIpc2ClientTerm() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpJoinThread() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpJsonParse() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpJsonParseBuf() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpJsonParseBufInit() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpJsonParseEx() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpJsonParseExInit() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpJsonParseInit() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpLwCondDestroy() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpLwCondInit() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpLwCondSignal() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpLwCondSignalAll() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpLwCondSignalTo() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpLwCondWait() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpLwMutexDestroy() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpLwMutexInit() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpLwMutexLock() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpLwMutexTryLock() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpLwMutexUnlock() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpMemoryHeapDestroy() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpMemoryHeapGetAllocator() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpMemoryHeapGetAllocatorEx() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpMemoryHeapInit() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpMutexDestroy() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpMutexInit() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpMutexLock() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpMutexTryLock() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpMutexUnlock() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpOpenEventFlag() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpOpenSema() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPanic() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPollEventFlag() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPollSema() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpRtcConvertToPosixTime() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpRtcFormatRFC3339() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpRtcParseRFC3339() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpServerErrorJsonGetErrorCode() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpServerErrorJsonMultiGetErrorCode() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpServerErrorJsonParse() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpServerErrorJsonParseInit() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpServerErrorJsonParseMultiInit() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpSetEventFlag() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpSetPlatformType() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpSignalSema() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpStrBuildHex() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpStrcpyToBuf() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpStrncpyToBuf() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpStrnParseHex() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpStrParseHex() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpStrToInt32() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpStrToInt64() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpStrToUInt32() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpStrToUInt64() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpThreadGetId() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUInt32ToStr() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUInt64ToStr() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUserGetUserIdList() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUtilBuildTitleId() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUtilCanonicalizeNpIdForPs4() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUtilCanonicalizeNpIdForPsp2() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUtilCmpAccountId() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUtilGetDateSetAuto() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUtilGetDbgCommerce() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUtilGetEnv() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUtilGetFakeDisplayNameMode() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUtilGetFakeRateLimit() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUtilGetIgnoreNpTitleId() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUtilGetNpDebug() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUtilGetNpLanguageCode() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUtilGetNpLanguageCode2() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUtilGetNpLanguageCode2Str() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUtilGetNpLanguageCodeStr() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUtilGetNpTestPatch() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUtilGetNthChar() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUtilGetShareTitleCheck() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUtilGetSystemLanguage() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUtilGetTrcNotify() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUtilGetWebApi2FakeRateLimit() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUtilGetWebApi2FakeRateLimitTarget() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUtilGetWebTraceSetting() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUtilHttpUrlEncode() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUtilJidToNpId() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUtilJsonEscape() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUtilJsonGetOneChar() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUtilJsonUnescape() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUtilNpIdToJid() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUtilNumChars() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUtilParseJid() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUtilParseTitleId() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUtilSerializeJid() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUtilXmlEscape() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUtilXmlGetOneChar() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUtilXmlUnescape() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpWaitEventFlag() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpWaitSema() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpXmlParse() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpXmlParseInit() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_00FD578C2DD966DF() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_0131A2EA80689F4C() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_01443C54863BDD20() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_01BC55BDC5C0ADAD() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_01D1ECF5750F40E8() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_020A479A74F5FBAC() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_024AF5E1D9472AB5() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_027C5D488713A6B3() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_02FE9D94C6858355() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_041F34F1C70D15C1() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_0530B1D276114248() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_065DAA14E9C73AD9() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_06AFF4E5D042BC3E() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_06EE369299F73997() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_07C92D9F8D76B617() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_07E9117498F1E4BF() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_08F3E0AF3664F275() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_0A9937C01EF21375() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_0ACBE6ACCBA3876D() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_0AE07D3354510CE6() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_0AEC3C342AE67B7C() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_0B318420C11E7C23() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_0BB6C37B03F35D89() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_0BBE8A9ACDD90FDF() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_0C7B62905E224E9C() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_0D35913117241AF9() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_0D5EE95CEED879A7() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_0D6FB24B27AB1DA2() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_0DE8032D534AC41C() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_0DF4CCA9DCA9E742() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_0E7449B1D3D98C01() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_0E77094B7750CB37() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_0ECAB397B6D50603() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_0F1DE1D1EADA2948() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_0F8AFEFA1D26BF1A() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_11881710562A6BAD() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_11AFD88BBD0C70DB() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_11E704A30A4B8877() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_125014842452F94B() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_126F0071E11CAC46() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_12926DCF35994B01() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_12CC7ABFBF31618F() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_13C4E51F44592AA2() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_15330E7C56338254() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_1566B358CABF2612() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_1625818F268F45EF() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_16D32B40D28A9AC2() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_183F4483BDBD25CD() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_1887E9E95AF62F3D() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_18A3CE95FD893D3A() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_18B3665E4854E7E9() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_1923B003948AF47E() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_19B533DA4C59A532() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_1BB399772DB68E08() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_1C0AC612D3A2971B() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_1C5599B779990A43() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_1CCBB296B04317BE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_1CD045542FB93002() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_1DECECA673AB77B7() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_1E03E024E26C1A7F() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_1F101732BB0D7E21() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_1F4D153EC3DD47BB() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_1F7C47F63FAF0CBE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_1FBE2EE68C0F31B6() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_2038C1628914B9C9() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_203FCB56FDB86A74() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_20569C107C6CB08C() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_20AB2D734EDE55F0() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_22B1281180FB0A5E() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_22F1AADA66A449AE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_238B215EFFDF3D30() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_24E8EC51D149FA15() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_25728E78A3962C02() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_25E649A1C6891C05() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_264B8A38B577705D() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_266ED08DC1C82A0E() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_27BB4DE62AB58BAD() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_283AA96A196EA2EA() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_285315A390A85A94() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_29049DBB1EF3194E() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_29F7BA9C3732CB47() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_2A732DF331ACCB37() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_2AA01660EC75B6FB() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_2B37CBCE941C1681() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_2CAA3B64D0544E55() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_2CCD79617EC10A75() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_2CD8B69716AC0667() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_2D74F7C0FF9B5E9C() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_2DCA5A8080544E95() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_2E69F2743CE7CE57() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_2EAF1F3BAFF0527D() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_31493E55BB4E8F66() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_317EDCAD00FB5F5E() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_31E01CFA8A18CDA2() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_32AFD782A061B526() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_32B5CDEB093B8189() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_34155152513C93AE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_34E4EFFF8EF6C9FE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_3572FA0D5C54563B() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_367C479B264E0DB9() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_36884FBC964B29CC() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_3860081BB7559949() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_39314F7E674AB132() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_3A02E780FCC556A5() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_3A17B885BA4849B6() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_3A38EACAEA5E23A4() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_3B34A5E07F0DBC1F() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_3B4E8FFC00FC7EA4() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_3BAB18FDA235107A() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_3BDF9996A0A33F11() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_3C1952F1A45CC37A() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_3CA37906CDB05F3B() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_3CDB2908ACEE3A6F() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_3D3ED165F2BDCD33() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_3DA4D7D1575FCDCE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_3DDFB612CD0BC769() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_3E0415E167DEADC7() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_3E7E9F0F1581C1E6() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_3ED389DB8280ED65() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_3F0C7F6C0C35487D() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_3FDA7200389EF0D2() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_3FF3C258BA516E58() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_4029453F628A3C5D() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_405826DDB4AE538E() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_405A926759F25865() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_406608FDEE7AE88A() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_40DDA5558C17DDCF() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_419D12E52FF60664() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_4296E539474BE77F() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_42F41FC563CC3654() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_43CCC86F4C93026A() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_4409F60BDABC65E1() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_4563C70AEC675382() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_45E66370219BD05E() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_466A54F072785696() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_46CD2536976F209A() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_4863717BD2FDD157() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_4902EBD19A263149() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_4904F7FE8D83F40C() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_4A5E13F784ABFCE7() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_4B65EEB135C12781() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_4C19D49978DA85E2() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_4DE5D620FF66F136() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_4E170C12B57A8F9E() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_4E2F3FA405C3260C() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_4EA9350577513B4D() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_4F78EB6FC4B5F21F() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_50348BE4331117B7() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_508C7E8CDD281CAA() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_521C1D2C028F5A7E() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_522FF24A35E67291() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_5470FE90C25CDD4C() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_557F260F9A4ACD18() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_5586F97209F391EB() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_55B2C9B7ADA95C3C() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_55B488A3A540B936() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_5642DFE82AF43143() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_574E046F294AE187() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_578926EBF8AA6CBF() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_585DA5FC650896BC() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_58D6EB27349EC276() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_5906B7317949872D() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_5910B5614335BE70() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_593D7DA8911F08C9() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_59757FE6A93B0D53() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_598E60F862B1141E() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_5A45351666680DAF() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_5AABE9EA702E6A7F() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_5AEA4AE472355B80() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_5B20E53CDE598741() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_5B480B59FAE947E0() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_5B5EEC23690AB9BD() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_5C0AC5B0AF3EDAE0() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_5D2E999BEA0762D4() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_5D55BBFD45110E16() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_5DEE15403D2BB5FD() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_6020C708CA74B130() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_606E1415503C34D2() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_612140E8EE9A693E() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_61F13F551DAF61DF() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_6206D39131752328() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_621D4543EF0344DE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_6259A9A8E56D0273() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_625F9C7016346F4E() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_62EF8DF746CD8C4A() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_636D2A99FD1E6B2B() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_68013EDF66FE7425() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_6971F7067DD639D1() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_69896ADB3AB410B2() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_6A1389AA6E561387() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_6A5560D89F12B2E7() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_6ABF99CF854ABCF1() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_6B4FDDC6500D8DCB() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_6CA11D5B49D1928A() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_6D6C0FB61E6D0715() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_6D750745FE1348F5() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_6E1AF3F9D09914BE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_6E53ED4C08B2A521() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_6EF43ACA1ED6B968() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_6F6FA09F3E1B6A60() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_7035C340C7195901() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_7038E21CB5CF641B() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_706345DCDA5BA44D() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_7120714EBF10BF1F() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_713D28A91BC803DD() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_7153BD76A53AA012() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_715C625CC7041B6B() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_71E467BDB18711D0() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_720D17965C1F4E3F() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_734380C9BCF65B9A() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_73F4C08CCD4BBCCF() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_74403101B7B29D46() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_7525B081ACD66FF4() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_75BF4477C13A05CA() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_7609793F5987C6F7() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_7616ED01B04769AA() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_764F873D91A124D8() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_7706F1E123059565() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_77F2D07EB6D806E6() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_79C3704CDCD59E57() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_79DA0BBA21351545() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_79FA2447B5F3F0C4() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_7A4D6F65FF6195A5() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_7B3195CD114DECE7() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_7B3238F2301AD36D() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_7C77FC70750A3266() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_7D23A9DC459D6D18() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_7D5988C748D0A05F() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_7D9597147A99F4F4() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_7E2953F407DD8346() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_7EE34E5099709B32() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_80470E5511D5CA00() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_807179701C08F069() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_8096E81FFAF24E46() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_80B764F4F1B87042() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_80BF691438AD008B() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_80CF6CFC96012442() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_80EA772F8C0519FD() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_81D0AFD0084D327A() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_821EB8A72176FD67() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_82D2FAB54127273F() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_836AE669C42A59E9() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_8559A25BFEC3518C() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_85C1F66C767A49D2() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_8689ED1383F87BA7() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_8796CD9E5355D3A6() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_87D37EB6DDC19D99() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_880AA48F70F84FDD() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_897B07562093665B() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_8ACAF55F16368087() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_8AE8A5589B30D4E0() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_8AE997909831B331() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_8B2D640BE0D0FB99() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_8B3D9AB4668DAECB() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_8B5EFAAAACE0B46C() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_8C27943F40A988DB() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_8C54096C75F5F2D0() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_8D7663A0A5168814() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_8E618F509994FAD7() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_8F19E6CC064E2B98() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_8F6A8AEAEE922FF5() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_9010E1AD8EBBFBCA() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_90A955A0E7001AE9() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_90F9D6067FEECC05() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_9348F3D19546A1DA() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_93D3C011DB19388A() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_956E7A4FD9F89103() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_95F699E042C3E40F() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_96877B39AA0E8735() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_96CE07C49ED234EA() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_976BB178235B5681() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_978C0B25E588C4D6() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_98BA2612BEF238D6() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_995BDD4931AF9137() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_9966E39A926B7250() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_99C2306F18963464() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_99C92C613B776BA7() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_9A4E4B938CC8AD39() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_9B23F7B4B7F72081() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_9C0EAEEAE705A8DB() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_9D47AC59545DE9E8() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_A13052D8B1B2ACFA() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_A1AA43E3A78F6F62() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_A1E48CDF54649DC9() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_A2E7DEE5B0AF5D14() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_A2F5C7FD9FF113F5() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_A36296E2269D46BC() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_A3EE2A7B9F0D88AF() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_A4471F9F7E0BFA82() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_A449BBA521EA34E1() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_A48E666C334E726C() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_A49B7449B4DDE69C() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_A5748451125C9EA4() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_A690A28D648CC176() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_A6A86DE1B1CBB1D9() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_A8F2BB7B815740A1() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_A93F64C06A6F7397() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_AB35925FC97D6AA3() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_AC014AA2C991FA29() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_AC06E10901404AEB() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_AC75C68813523505() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_AD441BC497082C3E() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_AD4F25F021D354C3() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_ADFA04A85541A4FE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_AE9610A6B5217A23() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_AF201923826F0A58() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_AFC021B4389CA3FA() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_B015E999A3373D8F() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_B0384B86107FC652() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_B0C630653B316563() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_B100DCCD88D5C73D() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_B11A3FEA5E4D9EA4() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_B2E7F8DC199C0B93() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_B3AB61A296F6DDC8() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_B3F32F6AE619EC82() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_B4227AB213BF8CF5() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_B4652BF42B604360() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_B536C1F13BFE97CB() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_B645CC264184BC89() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_B67E17B1582C6FBD() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_B6D047C5D7695A4D() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_B75ED8E1EA62EFC7() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_B7A9A944DBD7E100() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_B7C4E75BE94F31F3() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_B888B1F92C464121() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_B8DEC22564AA057B() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_B9BADD1CBBBAE4F8() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_BAA9F7169C85E59F() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_BAEE5C38908D62DB() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_BCC855EB25183F84() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_BD01F637029C7364() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_BDD29F5AC7077E53() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_BED83DD33ECAD50D() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_BEE7D5D098ABF728() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_C0DB15CCF59AE62C() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_C1C229FEE0FD60FA() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_C228B9AD68298E98() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_C298525CEF6FB283() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_C350F09351F6D6B5() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_C3742E80FA580319() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_C3C9853D5D4D45D4() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_C3F5DAD4FB9FC340() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_C45FB0E4CCE9AED6() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_C4979CB948B7E3C7() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_C49B25BA16CF0B8C() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_C551345D9631201E() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_C57A294421368298() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_C5DC91CAD721D628() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_C6DECEE589135357() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_C81F8B20D67AC78D() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_C820FA56FAC87BEA() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_C878EA9114C5E490() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_C8A813EBFF477509() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_C966A663D5A35482() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_C97C4C67FD3674D3() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_C990550F15848B07() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_CA59737A8EC1BBBE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_CAC5FDE8F80D7B65() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_CB135B30D0639B83() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_CB8A1AAA61F64C3A() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_CB9E674672580757() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_CC2B9D25EAEAAB1D() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_CD1B252BBEDF5B53() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_CF003BE90CBE1A27() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_CF008E34884AC1E2() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_D0B8F4B3A3687AB2() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_D0EE19B8E91F60F5() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_D12B9294BD0E0F56() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_D1CC8626D8FA328B() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_D2FA2BB9EB8B63AC() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_D32197880CF93CEB() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_D326F5C26CC81B8E() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_D4FA06B95A321B7A() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_D52A37A901E04B21() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_D5504DFC399AB400() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_D56105CB27F8F5DC() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_D568AB19235ECB19() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_D6DF7BF6639FE611() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_D8608A903119D746() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_D9E8FC707D59914D() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_D9F079E62DEE5B29() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_DA17CE4F29748536() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_DA40B9EFD7F61185() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_DA6B274FEBC2666A() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_DAD01535C87A51FC() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_DB4511D448510EC4() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_DB8EF1FFFC66269C() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_DBB508FA1B9DA8F7() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_DC59C9B870B729A2() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_DC669ED6CBF6751C() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_DCB8A2849A41C991() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_DD8F9916D7F03AF7() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_DDC33F2F4E480C2A() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_DE0B420BDE8B22D7() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_E0C0BC29898FE370() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_E0CD893E46FB55BA() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_E25530164B7F659F() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_E3682F43FDF76C58() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_E38177E1C78A80FA() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_E3CA74CFF965DF0A() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_E45BB191B49B2ED9() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_E465B9D6B60E6D7D() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_E4D82876C296C38A() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_E4DDB5350FA5B538() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_E54BFF6FB72BC7BE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_E592A93203020BBB() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_E5A44AF6D7D48AFD() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_E639A97CF9FF1430() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_E6AC0179E48A8927() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_E751596682775D83() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_E788B1E52EF82702() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_E94F17613F5C9D31() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_E9590113128D55E0() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_E9E0B0DD12560B16() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_EAF5C8ECE64C7B05() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_EB98BF5C42D4A7EB() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_EBABC4AAC43A468C() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_EBF00085F082CC8B() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_ECB659EE058D06AF() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_ECF096AB751487AE() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_EE5A271701DB33C0() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_EF64CB6A1625248E() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_EF6C8A357C7ED863() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_F00FE94F7E699994() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_F1A51DBA30329038() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_F216E766A90FDC12() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_F2A10584ABE5D82C() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_F2D99D395E5421A3() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_F38001E528BA1371() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_F39EC9C8FA7687B3() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_F3AFFFDCD632775C() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_F3B8DFF33748BFD3() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_F5E47F9550F7A147() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_F6E93714D1A939CF() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_F6FD19AD48E4EF09() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_F744EBFC620F7CBF() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_F76E4525ACBACC7F() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_F7957A48882F42CB() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_F7A80B07809BA838() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_F8571C6CC5B6B59D() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_F9787CFA873836FB() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_FA789F6D34D383F8() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_FABA574083AC1E6C() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_FC04FDBBAE368FB7() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_FD2DAFBF2E40EEE7() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_FD55EE6D35F950AD() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_FE55EE32098D0D58() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_FE79841022E1DA1C() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_FFF4A3E279FB44A7() { - LOG_ERROR(Lib_NpCommon, "(STUBBED) called"); - return ORBIS_OK; -} - -void RegisterLib(Core::Loader::SymbolsResolver* sym) { - LIB_FUNCTION("i8UmXTSq7N4", "libSceNpCommonCompat", 1, "libSceNpCommon", 1, 1, sceNpCmpNpId); - LIB_FUNCTION("TcwEFnakiSc", "libSceNpCommonCompat", 1, "libSceNpCommon", 1, 1, - sceNpCmpNpIdInOrder); - LIB_FUNCTION("dj+O5aD2a0Q", "libSceNpCommonCompat", 1, "libSceNpCommon", 1, 1, - sceNpCmpOnlineId); - LIB_FUNCTION("0gdlCVNNHCI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _sceNpAllocatorExConvertAllocator); - LIB_FUNCTION("Zh23aSLeeZo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, _sceNpAllocatorExFree); - LIB_FUNCTION("a2qdVU8RWb4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _sceNpAllocatorExMalloc); - LIB_FUNCTION("kKF3w-XkCWA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _sceNpAllocatorExRealloc); - LIB_FUNCTION("Cmd4+m7V00c", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _sceNpAllocatorExStrdup); - LIB_FUNCTION("EziLjfyTnKI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _sceNpAllocatorExStrndup); - LIB_FUNCTION("BztTl7QeYqE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, _sceNpAllocatorFree); - LIB_FUNCTION("mzlILsFx0cU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, _sceNpAllocatorMalloc); - LIB_FUNCTION("VWcTu8wKwlQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _sceNpAllocatorRealloc); - LIB_FUNCTION("c8-4aC9opYE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, _sceNpAllocatorStrdup); - LIB_FUNCTION("vqA9bl6WsF0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _sceNpAllocatorStrndup); - LIB_FUNCTION("z5kwfM5InpI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, _sceNpFree); - LIB_FUNCTION("p1vvpKGRXe4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, _sceNpHeapFree); - LIB_FUNCTION("kwW5qddf+Lo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, _sceNpHeapMalloc); - LIB_FUNCTION("wsfyvM+VbUk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, _sceNpHeapRealloc); - LIB_FUNCTION("atWcfgasESY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, _sceNpHeapStrdup); - LIB_FUNCTION("RzLv+HR5E2A", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, _sceNpHeapStrndup); - LIB_FUNCTION("w2+qV1RJgcI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, _sceNpMalloc); - LIB_FUNCTION("UmzxltBpiiY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, _sceNpRealloc); - LIB_FUNCTION("LJvHO3uCNm4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10Cancelable10IsCanceledEv); - LIB_FUNCTION("fd+grYAEph0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10Cancelable10LockCancelEPKciS3_); - LIB_FUNCTION("IwDQAbQxvD0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10Cancelable11CheckCancelEPKciS3_); - LIB_FUNCTION("-zbpF68OGDs", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10Cancelable12UnlockCancelEPKciS3_); - LIB_FUNCTION("bBLapYYwyr0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10Cancelable13SetCancelableEb); - LIB_FUNCTION("j4gLOIpHgNk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10Cancelable14SetupSubCancelEPS1_PKciS4_); - LIB_FUNCTION("vmt3ZOlQu3o", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10Cancelable16CleanupSubCancelEPS1_); - LIB_FUNCTION("Y7f+qBjKxdo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10Cancelable4InitEv); - LIB_FUNCTION("Jhbrpz0YhHU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10Cancelable6CancelEij); - LIB_FUNCTION("v2yJZLY0w1U", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10Cancelable7DestroyEv); - LIB_FUNCTION("vqekW3s-eFg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10CancelableC2Ev); - LIB_FUNCTION("kdOC-2AE06w", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10CancelableD0Ev); - LIB_FUNCTION("upzdrzOYkS0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10CancelableD1Ev); - LIB_FUNCTION("vZXDqs2x7t0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10CancelableD2Ev); - LIB_FUNCTION("nleHqndSeQ0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10CancelLock3EndEPKciS3_); - LIB_FUNCTION("lJ2Efd9PUKI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10CancelLock5BeginEPNS0_6HandleEPKciS5_); - LIB_FUNCTION("Vq9LKkPXkIQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10CancelLockC1Ev); - LIB_FUNCTION("MecB8wAHCfE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10CancelLockC2Ev); - LIB_FUNCTION("K7FjXiy2z+A", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10CancelLockD1Ev); - LIB_FUNCTION("1iHBAKrdE90", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10CancelLockD2Ev); - LIB_FUNCTION("aoas3bJANfY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10EventQueue10ClearAbortEt); - LIB_FUNCTION("QlP4t2SGZ4I", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10EventQueue10TryDequeueEPvm); - LIB_FUNCTION("xu9qWN0YYC4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10EventQueue4ctorEv); - LIB_FUNCTION("N1gnYosdK7Q", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10EventQueue4dtorEv); - LIB_FUNCTION("b20e017Ei94", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10EventQueue4InitEPKcmm); - LIB_FUNCTION("slmKkuIoC28", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10EventQueue5AbortEt); - LIB_FUNCTION("suxln7PooIo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10EventQueue7DequeueEPvmj); - LIB_FUNCTION("qvpEuKumIGM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10EventQueue7DestroyEv); - LIB_FUNCTION("AV5jHo8O3+E", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10EventQueue7EnqueueEPKvmj); - LIB_FUNCTION("esiO4He2WTU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10EventQueueC2EP16SceNpAllocatorEx); - LIB_FUNCTION("E4uoqSdo8ek", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10EventQueueD0Ev); - LIB_FUNCTION("lQXgvDXBGtA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10EventQueueD1Ev); - LIB_FUNCTION("8kUkQPQP7bA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10EventQueueD2Ev); - LIB_FUNCTION("YHNEgBCSL2o", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10JsonNumber5ClearEv); - LIB_FUNCTION("UgmqDr1BCLw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10JsonNumber6SetNumEi); - LIB_FUNCTION("PccynQ5NdVQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10JsonNumber6SetNumEj); - LIB_FUNCTION("MY0CSk24EcY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10JsonNumber6SetNumEl); - LIB_FUNCTION("qbW7qOvVafI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10JsonNumber6SetNumEm); - LIB_FUNCTION("VyCn9EVJGlU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10JsonNumber6SetNumEPKc); - LIB_FUNCTION("-WgnISXjJ7A", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10JsonObject16DeleteFieldValueEPKc); - LIB_FUNCTION("DiHxx2k5zfM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10JsonObject5ClearEv); - LIB_FUNCTION("AGadQiCfKDY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10JsonParser4InitEPK7JsonDefPNS1_12EventHandlerE); - LIB_FUNCTION("CDzSgHA6hWg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10JsonParser5ParseEPKcm); - LIB_FUNCTION("ZJbPQt+FTnY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10JsonParserC2EP16SceNpAllocatorEx); - LIB_FUNCTION("u+A16O-TAHk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10JsonParserD0Ev); - LIB_FUNCTION("qJb7IXDg9xk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10JsonParserD1Ev); - LIB_FUNCTION("AvvE5A5A6ZA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10JsonParserD2Ev); - LIB_FUNCTION("kXE1imLw7yo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10JsonString5ClearEv); - LIB_FUNCTION("SN4IgvT26To", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10JsonString6SetStrEPKc); - LIB_FUNCTION("EyhtbPFMWNA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10MemoryFile4ReadEPNS0_6HandleEPvmPm); - LIB_FUNCTION("AZTMWob-mog", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10MemoryFile4SyncEv); - LIB_FUNCTION("dl6+SFHLke0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10MemoryFile5CloseEv); - LIB_FUNCTION("r2O0f9X-mqs", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10MemoryFile5WriteEPNS0_6HandleEPKvmPm); - LIB_FUNCTION("1DtavqenQjg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10MemoryFile8TruncateEl); - LIB_FUNCTION("ev77AviWYu8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10MemoryFileC2EP16SceNpAllocatorEx); - LIB_FUNCTION("6Vst7HqJMXU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10MemoryFileD0Ev); - LIB_FUNCTION("ZUf92uPkRuA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10MemoryFileD1Ev); - LIB_FUNCTION("lGjyfcI++PY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np10MemoryFileD2Ev); - LIB_FUNCTION( - "ezJnmv7hkAg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np12HttpTemplate19SetAuthInfoCallbackEPFii15SceHttpAuthTypePKcPcS5_iPPhPmPiPvESA_); - LIB_FUNCTION("iOTsJTR6Y9U", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np12HttpTemplate4InitEiPKcib); - LIB_FUNCTION("73qbxKjBH0o", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np12HttpTemplate7DestroyEv); - LIB_FUNCTION("Vj7HiXK-tTg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np12HttpTemplateC1Ev); - LIB_FUNCTION("hw-UPUK9T+w", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np12HttpTemplateC2Ev); - LIB_FUNCTION("cXYOwTVAuMs", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np12HttpTemplateD0Ev); - LIB_FUNCTION("Bm74HLvoNY4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np12HttpTemplateD1Ev); - LIB_FUNCTION("h6XPsGpHAtc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np12HttpTemplateD2Ev); - LIB_FUNCTION("jr0OcEeQJ8o", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np12StreamBufferixEi); - LIB_FUNCTION("rCRh3V03bPs", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np12StreamReader4ReadEPNS0_6HandleEPNS0_9StreamCtxEPvmPm); - LIB_FUNCTION("2SKuIvr9sYU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np12StreamReader7ReadAllEPNS0_6HandleEPNS0_9StreamCtxEPvmPm); - LIB_FUNCTION("f1ncwa-JXlA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np12StreamReader7ReadAllEPNS0_6HandleEPvmPm); - LIB_FUNCTION("z8qO7hql4Fs", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np12StreamReader8ReadDataEPNS0_6HandleEPNS0_9StreamCtxEPvmPm); - LIB_FUNCTION("oNqSobbGC80", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np12StreamReader8ReadDataEPNS0_6HandleEPvmPm); - LIB_FUNCTION("MSMPXUL5AuM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np12StreamReader8SkipDataEPNS0_6HandleElPl); - LIB_FUNCTION("fJB07vDf7no", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np12StreamReader8SkipDataEPNS0_6HandleEPNS0_9StreamCtxElPl); - LIB_FUNCTION("etMUeqIhN+w", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np12StreamWriter15WriteFilledDataEPNS0_6HandleEcl); - LIB_FUNCTION("SP2010+gtqw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np12StreamWriter15WriteFilledDataEPNS0_6HandleEPNS0_9StreamCtxEcl); - LIB_FUNCTION("Z1MRG-L+V0o", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np12StreamWriter5WriteEPNS0_6HandleEPNS0_9StreamCtxEPKvmPm); - LIB_FUNCTION("vHaV+tsSVu4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np12StreamWriter9WriteDataEPNS0_6HandleEPKvmPm); - LIB_FUNCTION("u9s1aUWSZB0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np12StreamWriter9WriteDataEPNS0_6HandleEPNS0_9StreamCtxEPKvmPm); - LIB_FUNCTION("gimH2zdBANg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np12WorkerThread10ThreadMainEv); - LIB_FUNCTION("YKz2oBW3ZkM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np12WorkerThreadC1EPNS0_9WorkQueueE); - LIB_FUNCTION("L9Ty-fG1IM4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np12WorkerThreadC2EPNS0_9WorkQueueE); - LIB_FUNCTION("f5L6ax7EWHk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np12WorkerThreadD0Ev); - LIB_FUNCTION("PvGTq9AGFfk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np12WorkerThreadD1Ev); - LIB_FUNCTION("+qB+WcQlMio", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np12WorkerThreadD2Ev); - LIB_FUNCTION("4nCyBD9jBus", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np13JsonDocParser5ParseEPKcm); - LIB_FUNCTION("sgh9D+MBBKA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np13JsonDocParser9GetResultEPPNS0_10JsonObjectE); - LIB_FUNCTION("lZWmdDoBDmI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np13JsonDocParser9GetResultEPPNS0_9JsonValueE); - LIB_FUNCTION("yPmQcnrgR2Y", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np13JsonDocParserC2EP16SceNpAllocatorExPK7JsonDef); - LIB_FUNCTION("p5hRe1k4Wlg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np13JsonDocParserD0Ev); - LIB_FUNCTION("iFOXfoXRHFQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np13JsonDocParserD1Ev); - LIB_FUNCTION("xS-Hjw1psYs", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np13JsonDocParserD2Ev); - LIB_FUNCTION("X0vEo7cZamA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np13NpTitleSecret5ClearEv); - LIB_FUNCTION("IjOpzNzl57o", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np13NpTitleSecretC1EPKvm); - LIB_FUNCTION("bC4+qi0mqJE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np13NpTitleSecretC1ERK16SceNpTitleSecret); - LIB_FUNCTION("fYr7Ahl-vNA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np13NpTitleSecretC1ERKS1_); - LIB_FUNCTION("08AQ2wYpzpk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np13NpTitleSecretC1Ev); - LIB_FUNCTION("Ft-VezxSErk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np13NpTitleSecretC2EPKvm); - LIB_FUNCTION("9QN7g5mQgCU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np13NpTitleSecretC2ERK16SceNpTitleSecret); - LIB_FUNCTION("JHG9CTmkdQw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np13NpTitleSecretC2ERKS1_); - LIB_FUNCTION("K1+uzxxReX0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np13NpTitleSecretC2Ev); - LIB_FUNCTION("dJRIc7d5iqU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np13NpTitleSecretD0Ev); - LIB_FUNCTION("XBzzdzT3qyg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np13NpTitleSecretD1Ev); - LIB_FUNCTION("QDlnJL6stA0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np13NpTitleSecretD2Ev); - LIB_FUNCTION("RPv5L-o5qRQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np13RingBufMemory4ctorEv); - LIB_FUNCTION("NfhXX6LFmj8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np13RingBufMemory4dtorEv); - LIB_FUNCTION("BkuxOAPlMMw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np13RingBufMemory4InitEm); - LIB_FUNCTION("do0t--lEKMM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np13RingBufMemory6ExpandEm); - LIB_FUNCTION("zdRXyt-65kA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np13RingBufMemory6IsInitEv); - LIB_FUNCTION("Za00SEoNA2A", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np13RingBufMemory7DestroyEv); - LIB_FUNCTION("lGIw3qfqI60", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np13RingBufMemoryC2EP16SceNpAllocatorEx); - LIB_FUNCTION("70qFzq4z3UI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np13RingBufMemoryD0Ev); - LIB_FUNCTION("C1TJsMv9wb8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np13RingBufMemoryD1Ev); - LIB_FUNCTION("EaxLv8TfsrM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np13RingBufMemoryD2Ev); - LIB_FUNCTION("j6CorpmdjRk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np14CalloutContext4InitEPKcimm); - LIB_FUNCTION("oLpLfV2Ov9A", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np14CalloutContext4InitEPKNS1_5ParamE); - LIB_FUNCTION("C282U0P6Nwg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np14CalloutContext7DestroyEv); - LIB_FUNCTION("dV+zK-Ce-2E", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np14CalloutContextC1Ev); - LIB_FUNCTION("j4IAvbKKTzw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np14CalloutContextC2Ev); - LIB_FUNCTION("WR4mjQeqz6s", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np14CalloutContextD0Ev); - LIB_FUNCTION("S+a+rgnGX8A", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np14CalloutContextD1Ev); - LIB_FUNCTION("wY9g+hVxLTM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np14CalloutContextD2Ev); - LIB_FUNCTION("PYBehFWVd60", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np14JsonDocBuilder12BuildBufSizeEv); - LIB_FUNCTION("cLdoHqi5Ezg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np14JsonDocBuilder16EscapeJsonStringEPKcPcmPm); - LIB_FUNCTION("V5xX2eroaWY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np14JsonDocBuilder23EscapeJsonStringBufSizeEPKc); - LIB_FUNCTION("irex3q-O6po", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np14JsonDocBuilder5BuildEPcmPm); - LIB_FUNCTION("ikFI73f3hP4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np14JsonDocBuilderC1ERKNS0_9JsonValueE); - LIB_FUNCTION("dhJGQPKLmn0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np14JsonDocBuilderC2ERKNS0_9JsonValueE); - LIB_FUNCTION("wDLaq7IgfIc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np14JsonDocBuilderD0Ev); - LIB_FUNCTION("Kfv9jPxf7qA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np14JsonDocBuilderD1Ev); - LIB_FUNCTION("MH0LyghLJEE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np14JsonDocBuilderD2Ev); - LIB_FUNCTION("pCIB7QX5e1g", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np15CancelableScope3EndEiPKciS3_); - LIB_FUNCTION("Etvu03IpTEc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np15CancelableScope5BeginEPNS0_6HandleEPKciS5_); - LIB_FUNCTION("pp88xnRgJrM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np15CancelableScopeC2Ev); - LIB_FUNCTION("E8yuDNYbzl0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np15CancelableScopeD0Ev); - LIB_FUNCTION("km5-rjNjSFk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np15CancelableScopeD1Ev); - LIB_FUNCTION("xpLjHhJBhpo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np15CancelableScopeD2Ev); - LIB_FUNCTION("LCk8T5b1h+4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np16StreamReadBufferC2EP16SceNpAllocatorEx); - LIB_FUNCTION("ZufKqNXItD0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np16StreamReadBufferD1Ev); - LIB_FUNCTION("bH7ljyLOsBw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np16StreamReadBufferD2Ev); - LIB_FUNCTION("et05S+nkWG8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np18HttpConnectionPool13InvalidateAllEv); - LIB_FUNCTION("Vzob5RCgfnY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np18HttpConnectionPool4InitEi); - LIB_FUNCTION("iBdEFRdfpgg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np18HttpConnectionPool7DestroyEv); - LIB_FUNCTION("PznfSvchYJ8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np18HttpConnectionPoolC1EP16SceNpAllocatorEx); - LIB_FUNCTION("-2TYwZ4ERbM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np18HttpConnectionPoolC2EP16SceNpAllocatorEx); - LIB_FUNCTION("5HWP63cOH+w", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np18HttpConnectionPoolD0Ev); - LIB_FUNCTION("kTfkKhcdW5Y", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np18HttpConnectionPoolD1Ev); - LIB_FUNCTION("3MVW8+eWnjs", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np18HttpConnectionPoolD2Ev); - LIB_FUNCTION("ELa6nMcCO9w", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np18MemoryStreamReader4ReadEPNS0_6HandleEPvmPm); - LIB_FUNCTION("UHj0GDTA2CU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np18MemoryStreamReaderC1EPKvm); - LIB_FUNCTION("WXRruhGp9dI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np18MemoryStreamReaderC2EPKvm); - LIB_FUNCTION("gA0CaCjJpg0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np18MemoryStreamReaderD0Ev); - LIB_FUNCTION("oULMh4JVC4o", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np18MemoryStreamReaderD1Ev); - LIB_FUNCTION("rNJ1+3KoZP4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np18MemoryStreamReaderD2Ev); - LIB_FUNCTION("VxKQGrudnzk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np18MemoryStreamWriter5WriteEPNS0_6HandleEPKvmPm); - LIB_FUNCTION("Lkdm2yqZN1c", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np18MemoryStreamWriterC1EPvm); - LIB_FUNCTION("abQ7xd3yVXM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np18MemoryStreamWriterC2EPvm); - LIB_FUNCTION("TXJnPiKuTf8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np18MemoryStreamWriterD0Ev); - LIB_FUNCTION("3VdCUl+DkNw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np18MemoryStreamWriterD1Ev); - LIB_FUNCTION("YmOVGwSJmzk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np18MemoryStreamWriterD2Ev); - LIB_FUNCTION("INZSjlRcuyQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np20BufferedStreamReader4ReadEPNS0_6HandleEPvmPm); - LIB_FUNCTION("3Ku9r8b6gCg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np20BufferedStreamReader5CloseEv); - LIB_FUNCTION("l6s7aomzWGA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np20BufferedStreamReaderC2EP16SceNpAllocatorEx); - LIB_FUNCTION("i28bR54-QFQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np20BufferedStreamReaderD0Ev); - LIB_FUNCTION("Tgr66MThOxA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np20BufferedStreamReaderD1Ev); - LIB_FUNCTION("PHWvRXbOnYs", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np20BufferedStreamReaderD2Ev); - LIB_FUNCTION("7dyKpPHU+Yk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc10IpmiClient10DisconnectEv); - LIB_FUNCTION("prj9aMR74bA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc10IpmiClient11IsConnectedEv); - LIB_FUNCTION("r7UpNm1Po9s", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc10IpmiClient16invokeSyncMethodEjPKvmPvPmm); - LIB_FUNCTION("+EQNga+wsPc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc10IpmiClient4ctorEv); - LIB_FUNCTION("2h59YqPcrdM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc10IpmiClient4dtorEv); - LIB_FUNCTION("iRH-NE2evR4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc10IpmiClient4InitEPKNS2_6ConfigE); - LIB_FUNCTION("CGKtxL26XqI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc10IpmiClient7ConnectEPKvm); - LIB_FUNCTION("+xvhXA8Ci4E", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc10IpmiClient7DestroyEv); - LIB_FUNCTION("6aKYLBS8Di8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc10IpmiClientC1Ev); - LIB_FUNCTION("dqjlsaUX0sc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc10IpmiClientC2Ev); - LIB_FUNCTION("3LuoWoXJ1WI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc10IpmiClientD0Ev); - LIB_FUNCTION("DRbjyNom-BE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc10IpmiClientD1Ev); - LIB_FUNCTION("J1lpiTKAEuk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc10IpmiClientD2Ev); - LIB_FUNCTION( - "aQzxfON3l2Y", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc13ServiceClientC1EPNS1_17ServiceIpmiClientEPKNS1_17ServiceClientInfoE); - LIB_FUNCTION( - "Mx6wrcdGC2w", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc13ServiceClientC2EPNS1_17ServiceIpmiClientEPKNS1_17ServiceClientInfoE); - LIB_FUNCTION("uvYTUK5xYG8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc17ServiceIpmiClient10DisconnectEv); - LIB_FUNCTION("fFGPlE0oNhw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc17ServiceIpmiClient10EndRequestEii); - LIB_FUNCTION("F2xYmg5DiR4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc17ServiceIpmiClient11findServiceEi); - LIB_FUNCTION("G4FYQtsjOX0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc17ServiceIpmiClient11InitServiceEi); - LIB_FUNCTION("0rqwC4+sgzU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc17ServiceIpmiClient11TermServiceEi); - LIB_FUNCTION("oCx3mVNvqzU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc17ServiceIpmiClient11WaitRequestEiij); - LIB_FUNCTION("tQOrMf4KtIo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc17ServiceIpmiClient12AbortRequestEii); - LIB_FUNCTION("9aiQo-uRPJY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc17ServiceIpmiClient12BeginRequestEii); - LIB_FUNCTION("H35UsHYlhB4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc17ServiceIpmiClient13CreateRequestEPiiPKvm); - LIB_FUNCTION("cMj7li0eXgw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc17ServiceIpmiClient13DeleteRequestEii); - LIB_FUNCTION("+ZC8QYB-BA8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc17ServiceIpmiClient13PollEventFlagEijmjPm); - LIB_FUNCTION("4GZ9O-OrfzE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc17ServiceIpmiClient13WaitEventFlagEijmjPmj); - LIB_FUNCTION("q+uCQLffwQE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc17ServiceIpmiClient14PollEventQueueEiPvm); - LIB_FUNCTION("bH08FzR5rFU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc17ServiceIpmiClient15CancelEventFlagEijm); - LIB_FUNCTION("stUzNgtFmtY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc17ServiceIpmiClient15RegisterServiceEPKNS1_17ServiceClientInfoE); - LIB_FUNCTION("fqAS9GQTmOU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc17ServiceIpmiClient16RegisterServicesEPKNS1_17ServiceClientInfoE); - LIB_FUNCTION("BJCXJJCi0Zc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc17ServiceIpmiClient17invokeInitServiceEi); - LIB_FUNCTION("GuruEy9Q-Zk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc17ServiceIpmiClient17invokeTermServiceEi); - LIB_FUNCTION("k9jCtANC+QM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc17ServiceIpmiClient17UnregisterServiceEi); - LIB_FUNCTION("8TpAxZoLLRw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc17ServiceIpmiClient18EndRequestForAsyncEii); - LIB_FUNCTION("1ONFW86TETY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc17ServiceIpmiClient19WaitRequestForAsyncEiij); - LIB_FUNCTION("nQm4o5iOye0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc17ServiceIpmiClient20AbortRequestForAsyncEii); - LIB_FUNCTION( - "ktb6iOBLnd4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc17ServiceIpmiClient20BeginRequestForAsyncEiiPN4IPMI6Client12EventNotifeeE); - LIB_FUNCTION("v5Z2LAKua28", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc17ServiceIpmiClient21CreateRequestForAsyncEPiiPKvm); - LIB_FUNCTION("7oJpAd+vJQA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc17ServiceIpmiClient21DeleteRequestForAsyncEii); - LIB_FUNCTION("KxlKRHLf9AY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc17ServiceIpmiClient4ctorEv); - LIB_FUNCTION("s+dG6iqG7j0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc17ServiceIpmiClient4dtorEv); - LIB_FUNCTION("qFdG8Ucfeqg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc17ServiceIpmiClient4InitEPNS2_6ConfigE); - LIB_FUNCTION("NTPZ5GZIA6U", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc17ServiceIpmiClient7ConnectEPKvm); - LIB_FUNCTION("IGngArGbzHo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc17ServiceIpmiClient7DestroyEv); - LIB_FUNCTION("FubuBXanVWk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc17ServiceIpmiClientC1Ev); - LIB_FUNCTION("zARyDXgocuk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc17ServiceIpmiClientC2Ev); - LIB_FUNCTION("PmsH4f3z8Yk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc17ServiceIpmiClientD0Ev); - LIB_FUNCTION("90XdvAqFFn8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc17ServiceIpmiClientD1Ev); - LIB_FUNCTION("agYDXAyL-K8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np3ipc17ServiceIpmiClientD2Ev); - LIB_FUNCTION("n9pzAHeCCVU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np4Cond4ctorEv); - LIB_FUNCTION("BtXPJQEg41Y", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np4Cond4dtorEv); - LIB_FUNCTION("wWTqVcTnep8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np4Cond4InitEPKcPNS0_5MutexE); - LIB_FUNCTION("SLPuaDLbeD4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np4Cond4WaitEj); - LIB_FUNCTION("OQiPXR6gfj0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np4Cond6SignalEv); - LIB_FUNCTION("I5uzTXxbziU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np4Cond7DestroyEv); - LIB_FUNCTION("-hchsElmzXY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np4Cond9SignalAllEv); - LIB_FUNCTION("3z5EPY-ph14", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, _ZN3sce2np4CondC1Ev); - LIB_FUNCTION("6nW8WXQYRgM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, _ZN3sce2np4CondC2Ev); - LIB_FUNCTION("AKiHGWhC2KU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, _ZN3sce2np4CondD0Ev); - LIB_FUNCTION("yX9ISVXv+0M", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, _ZN3sce2np4CondD1Ev); - LIB_FUNCTION("6RQRpTn+-cc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, _ZN3sce2np4CondD2Ev); - LIB_FUNCTION("6r6ssbPbKc4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np4Path11BuildAppendEPcmcPKcm); - LIB_FUNCTION("vfBKsg+lKWc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np4Path12AddDelimiterEPcmc); - LIB_FUNCTION("BqFx1VLEMPk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np4Path5ClearEv); - LIB_FUNCTION("AcG6blobOQE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np4Path6SetStrEPKcm); - LIB_FUNCTION("0fwoTW7gqfM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, _ZN3sce2np4PathD0Ev); - LIB_FUNCTION("-3UvpBs-26g", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, _ZN3sce2np4PathD1Ev); - LIB_FUNCTION("1nF0eXrBZYM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, _ZN3sce2np4PathD2Ev); - LIB_FUNCTION("KhoD7EapiYI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np4Time10AddMinutesEl); - LIB_FUNCTION("PgiCaoqRKKc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np4Time10AddSecondsEl); - LIB_FUNCTION("vINvzJOaqws", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np4Time12GetUserClockEPS1_); - LIB_FUNCTION("dLNhHwYyt4c", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np4Time15AddMicroSecondsEl); - LIB_FUNCTION("WZqwoPoMzFA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np4Time15GetNetworkClockEPS1_); - LIB_FUNCTION("fimORKx4RDg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np4Time20GetDebugNetworkClockEPS1_); - LIB_FUNCTION("++qSDotsHuE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np4Time7AddDaysEl); - LIB_FUNCTION("Zc+a6k6i7gY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np4Time8AddHoursEl); - LIB_FUNCTION("Fgm7cz6AX4k", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np4TimeplERK10SceRtcTick); - LIB_FUNCTION("F9khEfgTmsE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np4TimeplERKS1_); - LIB_FUNCTION("I1kBZV6keO4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np5Mutex4ctorEv); - LIB_FUNCTION("mo+gaebiE+M", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np5Mutex4dtorEv); - LIB_FUNCTION("aTNOl9EB4V4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np5Mutex4InitEPKcj); - LIB_FUNCTION("VM+CXTW4F-s", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np5Mutex4LockEv); - LIB_FUNCTION("eYgHIWx0Hco", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np5Mutex6UnlockEv); - LIB_FUNCTION("RgGW4f0ox1g", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np5Mutex7DestroyEv); - LIB_FUNCTION("TJNrs69haak", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np5Mutex7TryLockEv); - LIB_FUNCTION("O1AvlQU33pI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, _ZN3sce2np5MutexC1Ev); - LIB_FUNCTION("2beu2bHw6qo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, _ZN3sce2np5MutexC2Ev); - LIB_FUNCTION("omf1GoUEJCA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, _ZN3sce2np5MutexD0Ev); - LIB_FUNCTION("9zi9FTPol74", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, _ZN3sce2np5MutexD1Ev); - LIB_FUNCTION("CI7ciM21NXs", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, _ZN3sce2np5MutexD2Ev); - LIB_FUNCTION("uuyEiBHghY4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np5NpEnv8GetNpEnvEPS1_); - LIB_FUNCTION("-c9QK+CpQLg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np6Handle10CancelImplEi); - LIB_FUNCTION("ifqJb-V1QZw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np6Handle4InitEv); - LIB_FUNCTION("1atFu71dFAU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np6Handle7DestroyEv); - LIB_FUNCTION("KUJtztDMJYY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, _ZN3sce2np6HandleC1Ev); - LIB_FUNCTION("OhpofCxYOJc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, _ZN3sce2np6HandleC2Ev); - LIB_FUNCTION("ZOHgNNSZq4Q", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, _ZN3sce2np6HandleD0Ev); - LIB_FUNCTION("YWt5S4-cg9c", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, _ZN3sce2np6HandleD1Ev); - LIB_FUNCTION("dt0A2cWjwLs", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, _ZN3sce2np6HandleD2Ev); - LIB_FUNCTION("1x0jThSUr4w", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np6ObjectdaEPv); - LIB_FUNCTION("4il4PZAZOnQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np6ObjectdaEPvR14SceNpAllocator); - LIB_FUNCTION("q2USyzLF4kI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np6ObjectdaEPvR16SceNpAllocatorEx); - LIB_FUNCTION("CnDHI7sU+l0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np6ObjectdlEPv); - LIB_FUNCTION("05KEwpDf4Ls", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np6ObjectdlEPvR14SceNpAllocator); - LIB_FUNCTION("iwDNdnEGyhI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np6ObjectdlEPvR16SceNpAllocatorEx); - LIB_FUNCTION("V75N47uYdQc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np6ObjectnaEmR14SceNpAllocator); - LIB_FUNCTION("bKMVqRcCQ1U", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np6ObjectnaEmR16SceNpAllocatorEx); - LIB_FUNCTION("0syNkhJANVw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np6ObjectnwEmR14SceNpAllocator); - LIB_FUNCTION("orRb69nSo64", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np6ObjectnwEmR16SceNpAllocatorEx); - LIB_FUNCTION("Ehkz-BkTPwI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np6Thread12DoThreadMainEv); - LIB_FUNCTION("3CJl5ewd7-0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np6Thread4ctorEv); - LIB_FUNCTION("-3gV5N2u-sc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np6Thread4dtorEv); - LIB_FUNCTION("EqX45DhWUpo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np6Thread4InitEPKcimm); - LIB_FUNCTION("OoK0Ah0l1ko", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np6Thread4InitEPKNS1_5ParamE); - LIB_FUNCTION("ne77q1GOlF8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np6Thread4JoinEPi); - LIB_FUNCTION("VNKdE2Dgp0Y", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np6Thread5StartEv); - LIB_FUNCTION("sPti0OkVM8c", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np6Thread7DestroyEv); - LIB_FUNCTION("uphWwLZAuXA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np6Thread9EntryFuncEPv); - LIB_FUNCTION("gnwCmkY-V70", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np6Thread9GetResultEv); - LIB_FUNCTION("qy4V8O+snLU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np6Thread9IsRunningEv); - LIB_FUNCTION("0f3ylOQJwqE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, _ZN3sce2np6ThreadC2Ev); - LIB_FUNCTION("MEYMyfJxWXg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, _ZN3sce2np6ThreadD0Ev); - LIB_FUNCTION("0Q5aKjYErBA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, _ZN3sce2np6ThreadD1Ev); - LIB_FUNCTION("6750DaF5Pas", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, _ZN3sce2np6ThreadD2Ev); - LIB_FUNCTION("xxOTJpEyoj4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np7Callout10IsTimedoutEv); - LIB_FUNCTION("Zw3QlKu49eM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np7Callout11CalloutFuncEPv); - LIB_FUNCTION("14PDhhMEBKY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np7Callout4StopEv); - LIB_FUNCTION("TDuC6To9HJ8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np7Callout5StartEjPNS1_7HandlerE); - LIB_FUNCTION("r0PYNWZLZS8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np7Callout5StartEmPNS1_7HandlerE); - LIB_FUNCTION("3ErXia+y89M", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np7Callout9IsStartedEv); - LIB_FUNCTION("XEXFdmQj5oI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np7CalloutC1EPNS0_14CalloutContextE); - LIB_FUNCTION("Bpay3NjseSU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np7CalloutC2EPNS0_14CalloutContextE); - LIB_FUNCTION("Fx2UwoQVVmo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np7CalloutD0Ev); - LIB_FUNCTION("kUitiIVR43g", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np7CalloutD1Ev); - LIB_FUNCTION("ebomQLbpptw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np7CalloutD2Ev); - LIB_FUNCTION("YtzL-Rso9bk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np7HttpUri5BuildEPKS1_PcmPmj); - LIB_FUNCTION("Xp92SsA5atA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np7HttpUri5ParseEPS1_PKc); - LIB_FUNCTION("LL9z5QvmwaA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np7HttpUriC1EP16SceNpAllocatorEx); - LIB_FUNCTION("q4G7qxTJWps", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np7HttpUriC2EP16SceNpAllocatorEx); - LIB_FUNCTION("w+C8QXqZKSw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np7HttpUriD0Ev); - LIB_FUNCTION("wSCKvDDBPy4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np7HttpUriD1Ev); - LIB_FUNCTION("D-dT+vERWmU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np7HttpUriD2Ev); - LIB_FUNCTION("oaSKGgwTWG0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np7RingBuf14CheckinForReadEm); - LIB_FUNCTION("78yvwepeL7U", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np7RingBuf15CheckinForWriteEm); - LIB_FUNCTION("d8NGGmSEFfU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np7RingBuf15CheckoutForReadEPm); - LIB_FUNCTION("E2QFpAcDPq4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np7RingBuf16CheckoutForWriteEPm); - LIB_FUNCTION("1P-MUvbtyTM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np7RingBuf4ctorEv); - LIB_FUNCTION("rvz8xYxhMW0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np7RingBuf4dtorEv); - LIB_FUNCTION("IL3Wk7QuRhA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np7RingBuf4InitEPvm); - LIB_FUNCTION("kDaQLJv89bs", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np7RingBuf4PeekEmPvm); - LIB_FUNCTION("Mg-IhL6SWfg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np7RingBuf4ReadEPvm); - LIB_FUNCTION("IZOGdJ+LFFU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np7RingBuf5ClearEv); - LIB_FUNCTION("8Y5OOBb0B5Y", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np7RingBuf5WriteEPKvm); - LIB_FUNCTION("u-TlLaJUJEA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np7RingBuf7DestroyEv); - LIB_FUNCTION("L5BnZpuQImk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np7RingBufC1Ev); - LIB_FUNCTION("e2a1ZA+lJC4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np7RingBufC2Ev); - LIB_FUNCTION("hfJ1gGLgvq8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np7RingBufD0Ev); - LIB_FUNCTION("7w+LeZ5ymys", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np7RingBufD1Ev); - LIB_FUNCTION("9+NmoosRoBA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np7RingBufD2Ev); - LIB_FUNCTION("d+xJZ63-wrc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8HttpFile4ReadEPNS0_6HandleEPvmPm); - LIB_FUNCTION("jcPO4bt5i3o", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8HttpFile5CloseEv); - LIB_FUNCTION("RXdPqxVnrvo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8HttpFileC2EP16SceNpAllocatorEx); - LIB_FUNCTION("T2w3ndcG-+Q", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8HttpFileD0Ev); - LIB_FUNCTION("6fomUWNk6Xc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8HttpFileD1Ev); - LIB_FUNCTION("WAat5MtCKpc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8HttpFileD2Ev); - LIB_FUNCTION("uDyILPgHF9Q", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8JsonBool5ClearEv); - LIB_FUNCTION("FdpYFbq5C3Q", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8JsonBool7SetBoolEb); - LIB_FUNCTION("mFZezLIogNI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8JsonFile5CloseEv); - LIB_FUNCTION("hqPavTyQlNg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8JsonFileD0Ev); - LIB_FUNCTION("wzqAM7IYGzU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8JsonFileD1Ev); - LIB_FUNCTION("QFYVZvAJNC8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8JsonFileD2Ev); - LIB_FUNCTION("88GKkivBFhI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8JsonNull5ClearEv); - LIB_FUNCTION("WcLP8wPB9X4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8NpCommId5BuildERKS1_Pcm); - LIB_FUNCTION("LnjjzlJ+L5c", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8NpCommId5ClearEv); - LIB_FUNCTION("1TjLUwirok0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8NpCommId5ParseEPS1_PKc); - LIB_FUNCTION("UrJocI5M8GY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8NpCommId5ParseEPS1_PKcm); - LIB_FUNCTION("To1XvNOzjo0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8NpCommIdC1ERK20SceNpCommunicationId); - LIB_FUNCTION("N6SkkX1GkFU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8NpCommIdC1ERKS1_); - LIB_FUNCTION("AQyiYChNI0c", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8NpCommIdC1Ev); - LIB_FUNCTION("WywlusFissg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8NpCommIdC2ERK20SceNpCommunicationId); - LIB_FUNCTION("rB0oqLSjH6g", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8NpCommIdC2ERKS1_); - LIB_FUNCTION("BBtBjx9-bMI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8NpCommIdC2Ev); - LIB_FUNCTION("XeCZTzqIk2k", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8NpCommIdD0Ev); - LIB_FUNCTION("EPJbX73AVeU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8NpCommIdD1Ev); - LIB_FUNCTION("hP18CDS6eBU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8NpCommIdD2Ev); - LIB_FUNCTION("5WuiSZkU3mg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8Selector4InitEPKc); - LIB_FUNCTION("2HkOOhiWK3M", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8SelectorD0Ev); - LIB_FUNCTION("asZdig1mPlA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8SelectorD1Ev); - LIB_FUNCTION("PA9VYFAVKIE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8SelectorD2Ev); - LIB_FUNCTION("2YbS+GhInZQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8WorkItem10SetPendingEv); - LIB_FUNCTION("XUCjhejJvPc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8WorkItem10SetRunningEv); - LIB_FUNCTION("-91vFSqiuKw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8WorkItem11SetFinishedEi); - LIB_FUNCTION("zepqHjfGe0M", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8WorkItem14FinishCallbackEv); - LIB_FUNCTION("3rGzxcMK-Mg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8WorkItem15RemoveFromQueueEv); - LIB_FUNCTION("Oq5aepLkEWg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8WorkItem6CancelEi); - LIB_FUNCTION("gnh2cpEgSS8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8WorkItem9BindQueueEPNS0_9WorkQueueEi); - LIB_FUNCTION("HldN461O2Dw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8WorkItemC2EPKc); - LIB_FUNCTION("Y-I66cSNp+A", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8WorkItemD0Ev); - LIB_FUNCTION("dnwItoXLoy4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8WorkItemD1Ev); - LIB_FUNCTION("ga4OW9MGahU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np8WorkItemD2Ev); - LIB_FUNCTION("8i-vOVRVt5w", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9EventFlag3SetEm); - LIB_FUNCTION("vhbvgH7wWiE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9EventFlag4ctorEv); - LIB_FUNCTION("5nM4Yy92Qwg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9EventFlag4dtorEv); - LIB_FUNCTION("5Wy+JxpCBxg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9EventFlag4OpenEPKc); - LIB_FUNCTION("37Rd2JS+FCM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9EventFlag4PollEmjPm); - LIB_FUNCTION("1s+c3SG0WYc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9EventFlag4WaitEmjPmj); - LIB_FUNCTION("03UlDLFsTfw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9EventFlag5ClearEm); - LIB_FUNCTION("wJ-k9+UShJg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9EventFlag6CancelEm); - LIB_FUNCTION("amFi-Av19hU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9EventFlag6CreateEPKcj); - LIB_FUNCTION("QlaBcxSFPZI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9EventFlag7DestroyEv); - LIB_FUNCTION("cMOgkE2M2e8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9EventFlagC1Ev); - LIB_FUNCTION("Uv1IQpTWecw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9EventFlagC2Ev); - LIB_FUNCTION("uHOOEbuzjEQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9EventFlagD0Ev); - LIB_FUNCTION("WWW4bvT-rSw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9EventFlagD1Ev); - LIB_FUNCTION("RpWWfCEs9xA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9EventFlagD2Ev); - LIB_FUNCTION("jDDvll2aQpQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9HttpTrans10SetTimeoutEPKNS1_12TimeoutParamE); - LIB_FUNCTION("+hKyaJJCE+0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9HttpTrans11SendRequestEPNS0_6HandleEPKvm); - LIB_FUNCTION("EhLaOnhdcXo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9HttpTrans12RecvResponseEPNS0_6HandleEPvmPm); - LIB_FUNCTION("fV+Q5a6p+zQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9HttpTrans12SkipResponseEPNS0_6HandleE); - LIB_FUNCTION("Qfsmqs-bHeY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9HttpTrans16AddRequestHeaderEPKcS3_); - LIB_FUNCTION("6bYsRATI3tQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9HttpTrans16SetRequestHeaderEPKcS3_); - LIB_FUNCTION("WoFp77mNyw0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9HttpTrans21GetResponseStatusCodeEPNS0_6HandleEPi); - LIB_FUNCTION("RJOlguLEy-E", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9HttpTrans21SetRequestContentTypeEPKc); - LIB_FUNCTION("ws3x3yjUyeE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9HttpTrans23SetRequestContentLengthEm); - LIB_FUNCTION("YW09CP0Vrtw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9HttpTrans24GetResponseContentLengthEPNS0_6HandleEPbPm); - LIB_FUNCTION("JEYp0T1VC58", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9HttpTrans4InitERKNS0_12HttpTemplateEPNS0_18HttpConnectionPoolEiPKcm); - LIB_FUNCTION( - "O+FeLkOM7w0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9HttpTrans4InitERKNS0_12HttpTemplateEPNS0_18HttpConnectionPoolEiPKcS8_tS8_m); - LIB_FUNCTION("aWo+7jvpllY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9HttpTrans4ReadEPNS0_6HandleEPvmPm); - LIB_FUNCTION("cocNRQpq+NA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9HttpTrans5WriteEPNS0_6HandleEPKvmPm); - LIB_FUNCTION("2e9GLlHTKA4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9HttpTrans7DestroyEv); - LIB_FUNCTION("sqNxD6H5ZOQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9HttpTransC1EP16SceNpAllocatorEx); - LIB_FUNCTION("HEeXBdgvJI4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9HttpTransC2EP16SceNpAllocatorEx); - LIB_FUNCTION("Pe9fHKX7krE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9HttpTransD0Ev); - LIB_FUNCTION("ls8yIODZmzc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9HttpTransD1Ev); - LIB_FUNCTION("GSVe-aaTiEg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9HttpTransD2Ev); - LIB_FUNCTION("4cIJxNKQK5g", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9JsonArray12AddItemArrayEPPS1_); - LIB_FUNCTION("cWsZswBMjqg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9JsonArray5ClearEv); - LIB_FUNCTION("aCZjveAsynw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9JsonValue12GetItemValueEi); - LIB_FUNCTION("aIV+HI6llz4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9JsonValue13GetFieldValueEiPPKc); - LIB_FUNCTION("BDie4qEtKuA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9JsonValue13GetFieldValueEPKc); - LIB_FUNCTION("LotC9rVP3Lo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9JsonValueD0Ev); - LIB_FUNCTION("hBuLbn3mGBw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9JsonValueD1Ev); - LIB_FUNCTION("FfSNfBmn+K8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9JsonValueD2Ev); - LIB_FUNCTION("PsP6LYRZ7Dc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9LocalFile4ReadEPNS0_6HandleEPvmPm); - LIB_FUNCTION("Flyyg6hzUOM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9LocalFile4SeekEliPl); - LIB_FUNCTION("YtvLEI7uZRI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9LocalFile4SyncEv); - LIB_FUNCTION("9q+h2q5YprU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9LocalFile5CloseEv); - LIB_FUNCTION("0xL7AwgxphE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9LocalFile5WriteEPNS0_6HandleEPKvmPm); - LIB_FUNCTION("haDbtVOmaao", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9LocalFile6RemoveEPKc); - LIB_FUNCTION("Sgo7wy9okFI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9LocalFile8TruncateEl); - LIB_FUNCTION("QWlZu1JZOww", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9LocalFileC1Ev); - LIB_FUNCTION("HP4jsVYqBKg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9LocalFileC2Ev); - LIB_FUNCTION("-n0CR0QxhnY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9LocalFileD0Ev); - LIB_FUNCTION("3eoh4hjcYag", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9LocalFileD1Ev); - LIB_FUNCTION("s-C88O6Y8iU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9LocalFileD2Ev); - LIB_FUNCTION("euE6Yo5hkrY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9NpTitleId5BuildERKS1_Pcm); - LIB_FUNCTION("a76a3D9Adts", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9NpTitleId5ClearEv); - LIB_FUNCTION("4O8lYvForpk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9NpTitleId5ParseEPS1_PKc); - LIB_FUNCTION("-swgMjedLUQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9NpTitleId5ParseEPS1_PKcm); - LIB_FUNCTION("Fcvdbqpwpnw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9NpTitleIdC1ERK12SceNpTitleId); - LIB_FUNCTION("wd+YWDKMTQE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9NpTitleIdC1ERKS1_); - LIB_FUNCTION("-Ja2aT6A3fg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9NpTitleIdC1Ev); - LIB_FUNCTION("9n60S+t4Cxs", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9NpTitleIdC2ERK12SceNpTitleId); - LIB_FUNCTION("IefAhNUAivM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9NpTitleIdC2ERKS1_); - LIB_FUNCTION("OL7DU1kkm+4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9NpTitleIdC2Ev); - LIB_FUNCTION("rFcQRK+GMcQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9NpTitleIdD0Ev); - LIB_FUNCTION("TGJ5bE+Fb1s", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9NpTitleIdD1Ev); - LIB_FUNCTION("XKVRBLdw+7I", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9NpTitleIdD2Ev); - LIB_FUNCTION("zurkNUps5o8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9RefObject6AddRefEv); - LIB_FUNCTION("5tYi1l9CXD0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9RefObject7ReleaseEv); - LIB_FUNCTION("brUrttJp6MM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9RefObjectC1Ev); - LIB_FUNCTION("JRtw5pROOiM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9RefObjectC2Ev); - LIB_FUNCTION("8DrClRz7Z2U", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9RefObjectD0Ev); - LIB_FUNCTION("lPQzOhwPjuw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9RefObjectD1Ev); - LIB_FUNCTION("417JucZaE3g", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9RefObjectD2Ev); - LIB_FUNCTION("EFffsPLsOio", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9Semaphore4OpenEPKc); - LIB_FUNCTION("hQLw6eE4O44", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9Semaphore4WaitEj); - LIB_FUNCTION("wcOCedFKan4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9Semaphore6CreateEiiPKc); - LIB_FUNCTION("b7qnGORh+H4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9Semaphore6SignalEv); - LIB_FUNCTION("Es-CwSVnalY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9Semaphore7DestroyEv); - LIB_FUNCTION("Tuth2BRl4x0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9SemaphoreC1Ev); - LIB_FUNCTION("8k1rNqvczTc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9SemaphoreC2Ev); - LIB_FUNCTION("S6luQz76AQ4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9SemaphoreD0Ev); - LIB_FUNCTION("nW9XeX3eokI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9SemaphoreD1Ev); - LIB_FUNCTION("OukNoRur97E", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9SemaphoreD2Ev); - LIB_FUNCTION("F2umEBpQFHc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9WorkQueue11GetItemByIdEi); - LIB_FUNCTION("wM4q1JMisvA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9WorkQueue15GetFinishedItemENS0_14WorkItemStatusE); - LIB_FUNCTION("UYAD7sUQcYU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9WorkQueue16WorkItemFinishedEPNS0_8WorkItemEi); - LIB_FUNCTION("-9cU3y6rXVM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9WorkQueue17ProcFinishedItemsENS0_14WorkItemStatusE); - LIB_FUNCTION("ovc4ZvD0YjY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9WorkQueue18RemoveFinishedItemEPNS0_8WorkItemE); - LIB_FUNCTION("vPju3W13byw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9WorkQueue18WaitForPendingItemEPPNS0_8WorkItemEPb); - LIB_FUNCTION("XMIv42L5bEA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9WorkQueue4ctorEv); - LIB_FUNCTION("wESN-qrVhOU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9WorkQueue4dtorEv); - LIB_FUNCTION("+dGO+GS2ZXQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9WorkQueue4InitEPKcimm); - LIB_FUNCTION("U0YoWwgg8aI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9WorkQueue4InitEPKNS0_6Thread5ParamE); - LIB_FUNCTION("4DE+nnCVRPA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9WorkQueue4StopEv); - LIB_FUNCTION("VnQolo6vTr4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9WorkQueue5StartEv); - LIB_FUNCTION("laqZEULcfgw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9WorkQueue6CancelEii); - LIB_FUNCTION("CznMfhTIvVY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9WorkQueue6IsInitEv); - LIB_FUNCTION("NeopmYshD0U", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9WorkQueue7DestroyEv); - LIB_FUNCTION("KQSxXJBepQ4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9WorkQueue7EnqueueEiPNS0_8WorkItemE); - LIB_FUNCTION("zmOmSLnqlBQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9WorkQueue9CancelAllEi); - LIB_FUNCTION("eTy3L1azX4E", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9WorkQueue9IsRunningEv); - LIB_FUNCTION("X6NVkdpRnog", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9WorkQueueC1Ev); - LIB_FUNCTION("p+bd65J177I", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9WorkQueueC2Ev); - LIB_FUNCTION("uyNO0GnFhPw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9WorkQueueD0Ev); - LIB_FUNCTION("1QFKnDJxk3A", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9WorkQueueD1Ev); - LIB_FUNCTION("AIDhc3KCK7w", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2np9WorkQueueD2Ev); - LIB_FUNCTION("XLpPRMl5jro", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2npeqERK10SceRtcTickRKNS0_4TimeE); - LIB_FUNCTION("6jHOZ6fItFU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2npeqERK12SceNpTitleIdRKNS0_9NpTitleIdE); - LIB_FUNCTION("i+xzwYeeEtk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2npeqERK16SceNpTitleSecretRKNS0_13NpTitleSecretE); - LIB_FUNCTION("ZWZ9KqoIvQY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2npeqERK20SceNpCommunicationIdRKNS0_8NpCommIdE); - LIB_FUNCTION("Vsj50ZwNUFM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2npeqERKNS0_13NpTitleSecretERK16SceNpTitleSecret); - LIB_FUNCTION("WM5DPO-LryU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2npeqERKNS0_13NpTitleSecretES3_); - LIB_FUNCTION("ps246w9eXI8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2npeqERKNS0_4TimeERK10SceRtcTick); - LIB_FUNCTION("UVLmT9lzRYA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2npeqERKNS0_4TimeES3_); - LIB_FUNCTION("WaNQzws1ATU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2npeqERKNS0_8NpCommIdERK20SceNpCommunicationId); - LIB_FUNCTION("E-mYAG-aa1A", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2npeqERKNS0_8NpCommIdES3_); - LIB_FUNCTION("FmDmhB16wwE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2npeqERKNS0_9NpTitleIdERK12SceNpTitleId); - LIB_FUNCTION("niXN2N4o3yY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2npeqERKNS0_9NpTitleIdES3_); - LIB_FUNCTION("gKruhA35EXQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2npgeERK10SceRtcTickRKNS0_4TimeE); - LIB_FUNCTION("1mnghWFX0wQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2npgeERKNS0_4TimeERK10SceRtcTick); - LIB_FUNCTION("svAQxJ3yow4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2npgeERKNS0_4TimeES3_); - LIB_FUNCTION("oVZ6spoeeN0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2npgtERK10SceRtcTickRKNS0_4TimeE); - LIB_FUNCTION("snloJp6qQCc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2npgtERKNS0_4TimeERK10SceRtcTick); - LIB_FUNCTION("EFES6UR65oU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2npgtERKNS0_4TimeES3_); - LIB_FUNCTION("UIrMxV07mL0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2npleERK10SceRtcTickRKNS0_4TimeE); - LIB_FUNCTION("cAeFZE72SXU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2npleERKNS0_4TimeERK10SceRtcTick); - LIB_FUNCTION("ttA9TcO06uA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2npleERKNS0_4TimeES3_); - LIB_FUNCTION("rVtImV4rxSA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2npltERK10SceRtcTickRKNS0_4TimeE); - LIB_FUNCTION("nVB1Nsjwpj0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2npltERKNS0_4TimeERK10SceRtcTick); - LIB_FUNCTION("d0zSLZMER34", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2npltERKNS0_4TimeES3_); - LIB_FUNCTION("MVY+jtY-WiQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2npneERK10SceRtcTickRKNS0_4TimeE); - LIB_FUNCTION("tDs31ASQGV8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2npneERK12SceNpTitleIdRKNS0_9NpTitleIdE); - LIB_FUNCTION("OwsjgCQyZUI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2npneERK16SceNpTitleSecretRKNS0_13NpTitleSecretE); - LIB_FUNCTION("O5QkjyiPM4c", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2npneERK20SceNpCommunicationIdRKNS0_8NpCommIdE); - LIB_FUNCTION("7b5y1XSa+KQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2npneERKNS0_13NpTitleSecretERK16SceNpTitleSecret); - LIB_FUNCTION("zbliTwZKRyU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2npneERKNS0_13NpTitleSecretES3_); - LIB_FUNCTION("yXMjXN--3rY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2npneERKNS0_4TimeERK10SceRtcTick); - LIB_FUNCTION("cnoM7EjlLe4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2npneERKNS0_4TimeES3_); - LIB_FUNCTION("SM7OEf11LCA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2npneERKNS0_8NpCommIdERK20SceNpCommunicationId); - LIB_FUNCTION("QQCqBHk79sI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2npneERKNS0_8NpCommIdES3_); - LIB_FUNCTION("ONgEITYl9mA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2npneERKNS0_9NpTitleIdERK12SceNpTitleId); - LIB_FUNCTION("9pp9-dwqIHM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZN3sce2npneERKNS0_9NpTitleIdES3_); - LIB_FUNCTION("KyDWNwpREH4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZNK3sce2np10Cancelable6IsInitEv); - LIB_FUNCTION("VI8AHrfLdqY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZNK3sce2np10EventQueue6IsInitEv); - LIB_FUNCTION("jxPY-0x8e-M", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZNK3sce2np10EventQueue7IsEmptyEv); - LIB_FUNCTION("COxqqhvLSyM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZNK3sce2np10JsonNumber5CloneEP16SceNpAllocatorEx); - LIB_FUNCTION("m+dAaZ5pyO4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZNK3sce2np10JsonNumber6GetNumEPcm); - LIB_FUNCTION("Sk8AdNQUDm8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZNK3sce2np10JsonNumber6GetNumEPi); - LIB_FUNCTION("nHgo2VpnCB8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZNK3sce2np10JsonNumber6GetNumEPj); - LIB_FUNCTION("Agsyrf4L8uA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZNK3sce2np10JsonNumber6GetNumEPl); - LIB_FUNCTION("P2cGbJ5nD1w", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZNK3sce2np10JsonNumber6GetNumEPm); - LIB_FUNCTION("EcboqmwkrMY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZNK3sce2np9JsonArray5CloneEP16SceNpAllocatorEx); - LIB_FUNCTION("JcAsZlyr3Mo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZNK3sce2np9JsonValue12GetItemValueEi); - LIB_FUNCTION("XZTZqqSVGlY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZNK3sce2np9NpTitleId7IsEmptyEv); - LIB_FUNCTION("sreH33xjV0A", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZNK3sce2np9Semaphore6IsInitEv); - LIB_FUNCTION("QwO4sr6XzSY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZThn16_N3sce2np10MemoryFile5WriteEPNS0_6HandleEPKvmPm); - LIB_FUNCTION("ojBk-UJxzWw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZThn16_N3sce2np10MemoryFileD0Ev); - LIB_FUNCTION("8S1mWU-N9kM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZThn16_N3sce2np10MemoryFileD1Ev); - LIB_FUNCTION("eRlqlofFKYg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZThn16_N3sce2np9HttpTrans5WriteEPNS0_6HandleEPKvmPm); - LIB_FUNCTION("zWIFe+d77PU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZThn16_N3sce2np9HttpTransD0Ev); - LIB_FUNCTION("GG1Y+vBUkdU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZThn16_N3sce2np9HttpTransD1Ev); - LIB_FUNCTION("+3ySpB1buMs", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZThn16_N3sce2np9LocalFile5WriteEPNS0_6HandleEPKvmPm); - LIB_FUNCTION("hSnLhjGefsU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZThn16_N3sce2np9LocalFileD0Ev); - LIB_FUNCTION("q3s6++iIzjE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZThn16_N3sce2np9LocalFileD1Ev); - LIB_FUNCTION("E6GYo9uzjds", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZThn8_N3sce2np10MemoryFile4ReadEPNS0_6HandleEPvmPm); - LIB_FUNCTION("7bzUdBtIQhE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZThn8_N3sce2np10MemoryFileD0Ev); - LIB_FUNCTION("lNs-oTKpG9s", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZThn8_N3sce2np10MemoryFileD1Ev); - LIB_FUNCTION("xDrWJARfCbk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZThn8_N3sce2np6Handle10CancelImplEi); - LIB_FUNCTION("YqMS-iAjFY8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZThn8_N3sce2np6HandleD0Ev); - LIB_FUNCTION("lUsG1QfgVN4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZThn8_N3sce2np6HandleD1Ev); - LIB_FUNCTION("G+v692ul7MA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZThn8_N3sce2np9HttpTrans4ReadEPNS0_6HandleEPvmPm); - LIB_FUNCTION("sGhCzaJf+jQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZThn8_N3sce2np9HttpTransD0Ev); - LIB_FUNCTION("PUqCtFwnNvA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZThn8_N3sce2np9HttpTransD1Ev); - LIB_FUNCTION("NtsHoOq2ao4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZThn8_N3sce2np9LocalFile4ReadEPNS0_6HandleEPvmPm); - LIB_FUNCTION("Gh35wbyg4U8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZThn8_N3sce2np9LocalFileD0Ev); - LIB_FUNCTION("kD3l0P19Wzg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZThn8_N3sce2np9LocalFileD1Ev); - LIB_FUNCTION("IvTsS4VJq1w", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZTVN3sce2np10JsonNumberE); - LIB_FUNCTION("aLGD1kOLQXE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZTVN3sce2np10JsonObjectE); - LIB_FUNCTION("1At86OClqtY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZTVN3sce2np10JsonStringE); - LIB_FUNCTION("jsHe99x6l0w", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZTVN3sce2np8JsonBoolE); - LIB_FUNCTION("A742Lh-FnVE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZTVN3sce2np8JsonNullE); - LIB_FUNCTION("FfXZGW1TMvo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZTVN3sce2np8SelectorE); - LIB_FUNCTION("0qrLVqNUn2Y", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZTVN3sce2np9JsonArrayE); - LIB_FUNCTION("S8TLtKfZCfc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - _ZTVN3sce2np9JsonValueE); - LIB_FUNCTION("MWPOkqzYss0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpAllocateKernelMemoryNoAlignment); - LIB_FUNCTION("gMlY6eewr-c", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpAllocateKernelMemoryWithAlignment); - LIB_FUNCTION("jGF+MaB4b-M", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpArchInit); - LIB_FUNCTION("UskWpVWxSvg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpArchTerm); - LIB_FUNCTION("+9+kKMY9YIw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpAtomicCas32); - LIB_FUNCTION("Yohe0MMDfj0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpAtomicDec32); - LIB_FUNCTION("pfJgSA4jO3M", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpAtomicInc32); - LIB_FUNCTION("l67qBmMmKP4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpBase64Decoder); - LIB_FUNCTION("pu39pU8UgCo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpBase64Encoder); - LIB_FUNCTION("a5IfPlpchXI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpBase64GetDecodeSize); - LIB_FUNCTION("moGcgMNTHvQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpBase64UrlDecoder); - LIB_FUNCTION("IeNj+OcWgU8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpBase64UrlEncoder); - LIB_FUNCTION("7BjZKcN+oZ4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpBase64UrlGetDecodeSize); - LIB_FUNCTION("9+m5nRdJ-wQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpCalloutInitCtx); - LIB_FUNCTION("fClnlkZmA6k", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpCalloutStartOnCtx); - LIB_FUNCTION("lpr66Gby8dQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpCalloutStartOnCtx64); - LIB_FUNCTION("in19gH7G040", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpCalloutStopOnCtx); - LIB_FUNCTION("AqJ4xkWsV+I", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpCalloutTermCtx); - LIB_FUNCTION("kb2thTuS8t8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpCancelEventFlag); - LIB_FUNCTION("9pLoHoPMxeg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpClearEventFlag); - LIB_FUNCTION("+nmn+Z0nWDo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpCloseEventFlag); - LIB_FUNCTION("8hPzfjZzV88", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpCloseSema); - LIB_FUNCTION("i8UmXTSq7N4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpCmpNpId); - LIB_FUNCTION("TcwEFnakiSc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpCmpNpIdInOrder); - LIB_FUNCTION("dj+O5aD2a0Q", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpCmpOnlineId); - LIB_FUNCTION("1a+iY5YUJcI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpCondDestroy); - LIB_FUNCTION("q2tsVO3lM4A", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpCondInit); - LIB_FUNCTION("uMJFOA62mVU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpCondSignal); - LIB_FUNCTION("bsjWg59A7aE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpCondSignalAll); - LIB_FUNCTION("bAHIOyNnx5Y", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpCondSignalTo); - LIB_FUNCTION("ss2xO9IJxKQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpCondTimedwait); - LIB_FUNCTION("fZShld2PQ7w", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpCondWait); - LIB_FUNCTION("6jFWpAfqAcc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpCreateEventFlag); - LIB_FUNCTION("LHZtCT2W1Pw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpCreateSema); - LIB_FUNCTION("fhJ5uKzcn0w", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpCreateThread); - LIB_FUNCTION("90pmGqDK4BI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpDbgAssignDebugId); - LIB_FUNCTION("Etq15-l9yko", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpDbgDumpBinary); - LIB_FUNCTION("ZaKa5x61hGA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpDbgDumpText); - LIB_FUNCTION("sjnIeFCuTD0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpDeleteEventFlag); - LIB_FUNCTION("xPrF2nGPBXQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpDeleteSema); - LIB_FUNCTION("OQTweRLgFr8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpEventGetCurrentNetworkTick); - LIB_FUNCTION("vjwlDmsGtME", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpFreeKernelMemory); - LIB_FUNCTION("QmDEFikd3VA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpGetNavSdkVersion); - LIB_FUNCTION("sXVQUIGmk2U", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpGetPlatformType); - LIB_FUNCTION("Z3mnqcGmf8E", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpGetProcessId); - LIB_FUNCTION("pJlGhXEt5CU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpGetRandom); - LIB_FUNCTION("Pglk7zFj0DI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpGetSdkVersion); - LIB_FUNCTION("ljqnF0hmLjo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpGetSdkVersionUInt); - LIB_FUNCTION("PVVsRmMkO1g", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpGetSystemClockUsec); - LIB_FUNCTION("-gN6uE+zWng", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpGlobalHeapGetAllocator); - LIB_FUNCTION("VUHUasztbUY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpGlobalHeapGetAllocatorEx); - LIB_FUNCTION("P4YpPziLBd4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpGlobalHeapGetAllocatorExPtr); - LIB_FUNCTION("DI5n4aOdxmk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpGlobalHeapGetAllocatorPtr); - LIB_FUNCTION("wVdn78HKc30", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpHeapDestroy); - LIB_FUNCTION("lvek8w7yqyE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpHeapGetAllocator); - LIB_FUNCTION("2jdHoPpS+W0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpHeapGetStat); - LIB_FUNCTION("B+yGIX1+BTI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpHeapInit); - LIB_FUNCTION("evz0-93ucJc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpHeapShowStat); - LIB_FUNCTION("Hvpr+otU4bo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpHexToInt); - LIB_FUNCTION("5y0wMPQkaeU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpInt32ToStr); - LIB_FUNCTION("HoPC33siDD4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpInt64ToStr); - LIB_FUNCTION("G6qytFoBJ-w", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpIntGetPlatformType); - LIB_FUNCTION("fY4XQoA20i8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpIntIsOnlineIdString); - LIB_FUNCTION("hkeX9iuCwlI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpIntIsValidOnlineId); - LIB_FUNCTION("X6emt+LbSEI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpIntSetPlatformType); - LIB_FUNCTION("TWPY1x1Atys", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpIntToHex); - LIB_FUNCTION("kgDwlmy78k0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpIpc2ClientInit); - LIB_FUNCTION("CI2p6Viee9w", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpIpc2ClientTerm); - LIB_FUNCTION("EjMsfO3GCIA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpJoinThread); - LIB_FUNCTION("vJGDnNh4I0g", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpJsonParse); - LIB_FUNCTION("RgfCYkjW7As", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpJsonParseBuf); - LIB_FUNCTION("SnAdybtBK3o", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpJsonParseBufInit); - LIB_FUNCTION("p5ZkSMRR7AU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpJsonParseEx); - LIB_FUNCTION("nhgjiwPUIzI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpJsonParseExInit); - LIB_FUNCTION("teVnFAL6GNY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpJsonParseInit); - LIB_FUNCTION("zNb6IxegrCE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpLwCondDestroy); - LIB_FUNCTION("++eqYdzB8Go", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpLwCondInit); - LIB_FUNCTION("Xkn6VoN-wuQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpLwCondSignal); - LIB_FUNCTION("FJ4DCt8VzVE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpLwCondSignalAll); - LIB_FUNCTION("Bwi+EP8VQ+g", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpLwCondSignalTo); - LIB_FUNCTION("ExeLuE3EQCQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpLwCondWait); - LIB_FUNCTION("4zxevggtYrQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpLwMutexDestroy); - LIB_FUNCTION("1CiXI-MyEKs", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpLwMutexInit); - LIB_FUNCTION("18j+qk6dRwk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpLwMutexLock); - LIB_FUNCTION("hp0kVgu5Fxw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpLwMutexTryLock); - LIB_FUNCTION("CQG2oyx1-nM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpLwMutexUnlock); - LIB_FUNCTION("dfXSH2Tsjkw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpMemoryHeapDestroy); - LIB_FUNCTION("FaMNvjMA6to", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpMemoryHeapGetAllocator); - LIB_FUNCTION("xHAiSVEEjSI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpMemoryHeapGetAllocatorEx); - LIB_FUNCTION("kZizwrFvWZY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpMemoryHeapInit); - LIB_FUNCTION("lQ11BpMM4LU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpMutexDestroy); - LIB_FUNCTION("uEwag-0YZPc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpMutexInit); - LIB_FUNCTION("r9Bet+s6fKc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpMutexLock); - LIB_FUNCTION("DuslmoqQ+nk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpMutexTryLock); - LIB_FUNCTION("oZyb9ktuCpA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpMutexUnlock); - LIB_FUNCTION("5DkyduAF2rs", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpOpenEventFlag); - LIB_FUNCTION("-blITIdtUd0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpOpenSema); - LIB_FUNCTION("ZoXUrTiwKNw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpPanic); - LIB_FUNCTION("9YmBJ8KF9eI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpPollEventFlag); - LIB_FUNCTION("xmF0yIF4iXc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpPollSema); - LIB_FUNCTION("VMjIo2Z-aW0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpRtcConvertToPosixTime); - LIB_FUNCTION("W0YWLVDndx0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpRtcFormatRFC3339); - LIB_FUNCTION("LtkeQwMIEWY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpRtcParseRFC3339); - LIB_FUNCTION("0lZHbA-HRD0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpServerErrorJsonGetErrorCode); - LIB_FUNCTION("cRabutqUG7c", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpServerErrorJsonMultiGetErrorCode); - LIB_FUNCTION("WSQxnAVLKgw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpServerErrorJsonParse); - LIB_FUNCTION("UbStlMKTBeU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpServerErrorJsonParseInit); - LIB_FUNCTION("hbe+DdooIi4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpServerErrorJsonParseMultiInit); - LIB_FUNCTION("29ftOGIrUCo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpSetEventFlag); - LIB_FUNCTION("m9JzZSoDVFY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpSetPlatformType); - LIB_FUNCTION("-W28+9p1CKI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpSignalSema); - LIB_FUNCTION("i5TP5NLmkoQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpStrBuildHex); - LIB_FUNCTION("ivnnssCwjGI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpStrcpyToBuf); - LIB_FUNCTION("PHrpHMSU8Cs", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpStrncpyToBuf); - LIB_FUNCTION("h1SWCcBdImo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpStrnParseHex); - LIB_FUNCTION("DUHzVPNlugg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpStrParseHex); - LIB_FUNCTION("fElyBSn-l24", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpStrToInt32); - LIB_FUNCTION("CwqYdG4TrjA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpStrToInt64); - LIB_FUNCTION("uj86YxCYid0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpStrToUInt32); - LIB_FUNCTION("Ted2YU9lv94", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpStrToUInt64); - LIB_FUNCTION("yvaNTRiKXmo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpThreadGetId); - LIB_FUNCTION("rRN89jBArEM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpUInt32ToStr); - LIB_FUNCTION("QjNUYQbGoHA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpUInt64ToStr); - LIB_FUNCTION("Gh74vNl06sg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpUserGetUserIdList); - LIB_FUNCTION("N3tAHlBnowE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpUtilBuildTitleId); - LIB_FUNCTION("4mEAk-UKVNw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpUtilCanonicalizeNpIdForPs4); - LIB_FUNCTION("N3FB4r8JoRE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpUtilCanonicalizeNpIdForPsp2); - LIB_FUNCTION("xPRHNaD3kTc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpUtilCmpAccountId); - LIB_FUNCTION("owm52JoZ8uc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpUtilGetDateSetAuto); - LIB_FUNCTION("1Gfhi+tZ9IE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpUtilGetDbgCommerce); - LIB_FUNCTION("kBON3bAtfGs", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpUtilGetEnv); - LIB_FUNCTION("MUj0IV6XFGs", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpUtilGetFakeDisplayNameMode); - LIB_FUNCTION("O86rgZ2azfg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpUtilGetFakeRateLimit); - LIB_FUNCTION("FrxliFYAO8Y", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpUtilGetIgnoreNpTitleId); - LIB_FUNCTION("GRvK1ZE+FEQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpUtilGetNpDebug); - LIB_FUNCTION("OFiFmfsADas", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpUtilGetNpLanguageCode); - LIB_FUNCTION("X9CqyP164Hc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpUtilGetNpLanguageCode2); - LIB_FUNCTION("Fxux7Ob+Ynk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpUtilGetNpLanguageCode2Str); - LIB_FUNCTION("RfiA17kV+xs", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpUtilGetNpLanguageCodeStr); - LIB_FUNCTION("OA8f3KF9JsM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpUtilGetNpTestPatch); - LIB_FUNCTION("KCk4OGu8+sc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpUtilGetNthChar); - LIB_FUNCTION("fB5hE65pzbU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpUtilGetShareTitleCheck); - LIB_FUNCTION("SXUNKr9Zkv0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpUtilGetSystemLanguage); - LIB_FUNCTION("AjzLvR0g5Zs", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpUtilGetTrcNotify); - LIB_FUNCTION("pmHBFJyju9E", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpUtilGetWebApi2FakeRateLimit); - LIB_FUNCTION("ZRxKp9vjcNc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpUtilGetWebApi2FakeRateLimitTarget); - LIB_FUNCTION("4CqfNm3pisU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpUtilGetWebTraceSetting); - LIB_FUNCTION("ajoqGz0D9Dw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpUtilHttpUrlEncode); - LIB_FUNCTION("458yjI+OECI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpUtilJidToNpId); - LIB_FUNCTION("EftEB4kmkSg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpUtilJsonEscape); - LIB_FUNCTION("vj04qzp7uKY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpUtilJsonGetOneChar); - LIB_FUNCTION("4YJ5gYtRAAE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpUtilJsonUnescape); - LIB_FUNCTION("KyB1IAY2BiU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpUtilNpIdToJid); - LIB_FUNCTION("c+ssxRf1Si0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpUtilNumChars); - LIB_FUNCTION("oz2SlXNAnuI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpUtilParseJid); - LIB_FUNCTION("EfnfZtjjyR0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpUtilParseTitleId); - LIB_FUNCTION("okX7IjW0QsI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpUtilSerializeJid); - LIB_FUNCTION("5bBPLZV49kY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpUtilXmlEscape); - LIB_FUNCTION("Ls4eWDrbNmg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, - sceNpUtilXmlGetOneChar); - LIB_FUNCTION("+0rj9KhmYb0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpUtilXmlUnescape); - LIB_FUNCTION("ZbdPHUm7jOY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpWaitEventFlag); - LIB_FUNCTION("6adrFGe2cpU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpWaitSema); - LIB_FUNCTION("fEcrs9UPPyo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpXmlParse); - LIB_FUNCTION("MCLGkfBmw4c", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, sceNpXmlParseInit); - LIB_FUNCTION("AP1XjC3ZZt8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_00FD578C2DD966DF); - LIB_FUNCTION("ATGi6oBon0w", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_0131A2EA80689F4C); - LIB_FUNCTION("AUQ8VIY73SA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_01443C54863BDD20); - LIB_FUNCTION("AbxVvcXAra0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_01BC55BDC5C0ADAD); - LIB_FUNCTION("AdHs9XUPQOg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_01D1ECF5750F40E8); - LIB_FUNCTION("AgpHmnT1+6w", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_020A479A74F5FBAC); - LIB_FUNCTION("Akr14dlHKrU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_024AF5E1D9472AB5); - LIB_FUNCTION("AnxdSIcTprM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_027C5D488713A6B3); - LIB_FUNCTION("Av6dlMaFg1U", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_02FE9D94C6858355); - LIB_FUNCTION("BB808ccNFcE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_041F34F1C70D15C1); - LIB_FUNCTION("BTCx0nYRQkg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_0530B1D276114248); - LIB_FUNCTION("Bl2qFOnHOtk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_065DAA14E9C73AD9); - LIB_FUNCTION("Bq-05dBCvD4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_06AFF4E5D042BC3E); - LIB_FUNCTION("Bu42kpn3OZc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_06EE369299F73997); - LIB_FUNCTION("B8ktn412thc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_07C92D9F8D76B617); - LIB_FUNCTION("B+kRdJjx5L8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_07E9117498F1E4BF); - LIB_FUNCTION("CPPgrzZk8nU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_08F3E0AF3664F275); - LIB_FUNCTION("Cpk3wB7yE3U", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_0A9937C01EF21375); - LIB_FUNCTION("CsvmrMujh20", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_0ACBE6ACCBA3876D); - LIB_FUNCTION("CuB9M1RRDOY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_0AE07D3354510CE6); - LIB_FUNCTION("Cuw8NCrme3w", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_0AEC3C342AE67B7C); - LIB_FUNCTION("CzGEIMEefCM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_0B318420C11E7C23); - LIB_FUNCTION("C7bDewPzXYk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_0BB6C37B03F35D89); - LIB_FUNCTION("C76Kms3ZD98", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_0BBE8A9ACDD90FDF); - LIB_FUNCTION("DHtikF4iTpw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_0C7B62905E224E9C); - LIB_FUNCTION("DTWRMRckGvk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_0D35913117241AF9); - LIB_FUNCTION("DV7pXO7Yeac", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_0D5EE95CEED879A7); - LIB_FUNCTION("DW+ySyerHaI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_0D6FB24B27AB1DA2); - LIB_FUNCTION("DegDLVNKxBw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_0DE8032D534AC41C); - LIB_FUNCTION("DfTMqdyp50I", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_0DF4CCA9DCA9E742); - LIB_FUNCTION("DnRJsdPZjAE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_0E7449B1D3D98C01); - LIB_FUNCTION("DncJS3dQyzc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_0E77094B7750CB37); - LIB_FUNCTION("Dsqzl7bVBgM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_0ECAB397B6D50603); - LIB_FUNCTION("Dx3h0eraKUg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_0F1DE1D1EADA2948); - LIB_FUNCTION("D4r++h0mvxo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_0F8AFEFA1D26BF1A); - LIB_FUNCTION("EYgXEFYqa60", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_11881710562A6BAD); - LIB_FUNCTION("Ea-Yi70McNs", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_11AFD88BBD0C70DB); - LIB_FUNCTION("EecEowpLiHc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_11E704A30A4B8877); - LIB_FUNCTION("ElAUhCRS+Us", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_125014842452F94B); - LIB_FUNCTION("Em8AceEcrEY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_126F0071E11CAC46); - LIB_FUNCTION("EpJtzzWZSwE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_12926DCF35994B01); - LIB_FUNCTION("Esx6v78xYY8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_12CC7ABFBF31618F); - LIB_FUNCTION("E8TlH0RZKqI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_13C4E51F44592AA2); - LIB_FUNCTION("FTMOfFYzglQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_15330E7C56338254); - LIB_FUNCTION("FWazWMq-JhI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_1566B358CABF2612); - LIB_FUNCTION("FiWBjyaPRe8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_1625818F268F45EF); - LIB_FUNCTION("FtMrQNKKmsI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_16D32B40D28A9AC2); - LIB_FUNCTION("GD9Eg729Jc0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_183F4483BDBD25CD); - LIB_FUNCTION("GIfp6Vr2Lz0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_1887E9E95AF62F3D); - LIB_FUNCTION("GKPOlf2JPTo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_18A3CE95FD893D3A); - LIB_FUNCTION("GLNmXkhU5+k", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_18B3665E4854E7E9); - LIB_FUNCTION("GSOwA5SK9H4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_1923B003948AF47E); - LIB_FUNCTION("GbUz2kxZpTI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_19B533DA4C59A532); - LIB_FUNCTION("G7OZdy22jgg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_1BB399772DB68E08); - LIB_FUNCTION("HArGEtOilxs", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_1C0AC612D3A2971B); - LIB_FUNCTION("HFWZt3mZCkM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_1C5599B779990A43); - LIB_FUNCTION("HMuylrBDF74", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_1CCBB296B04317BE); - LIB_FUNCTION("HNBFVC+5MAI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_1CD045542FB93002); - LIB_FUNCTION("HezspnOrd7c", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_1DECECA673AB77B7); - LIB_FUNCTION("HgPgJOJsGn8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_1E03E024E26C1A7F); - LIB_FUNCTION("HxAXMrsNfiE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_1F101732BB0D7E21); - LIB_FUNCTION("H00VPsPdR7s", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_1F4D153EC3DD47BB); - LIB_FUNCTION("H3xH9j+vDL4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_1F7C47F63FAF0CBE); - LIB_FUNCTION("H74u5owPMbY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_1FBE2EE68C0F31B6); - LIB_FUNCTION("IDjBYokUuck", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_2038C1628914B9C9); - LIB_FUNCTION("ID-LVv24anQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_203FCB56FDB86A74); - LIB_FUNCTION("IFacEHxssIw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_20569C107C6CB08C); - LIB_FUNCTION("IKstc07eVfA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_20AB2D734EDE55F0); - LIB_FUNCTION("IrEoEYD7Cl4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_22B1281180FB0A5E); - LIB_FUNCTION("IvGq2makSa4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_22F1AADA66A449AE); - LIB_FUNCTION("I4shXv-fPTA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_238B215EFFDF3D30); - LIB_FUNCTION("JOjsUdFJ+hU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_24E8EC51D149FA15); - LIB_FUNCTION("JXKOeKOWLAI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_25728E78A3962C02); - LIB_FUNCTION("JeZJocaJHAU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_25E649A1C6891C05); - LIB_FUNCTION("JkuKOLV3cF0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_264B8A38B577705D); - LIB_FUNCTION("Jm7QjcHIKg4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_266ED08DC1C82A0E); - LIB_FUNCTION("J7tN5iq1i60", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_27BB4DE62AB58BAD); - LIB_FUNCTION("KDqpahluouo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_283AA96A196EA2EA); - LIB_FUNCTION("KFMVo5CoWpQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_285315A390A85A94); - LIB_FUNCTION("KQSdux7zGU4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_29049DBB1EF3194E); - LIB_FUNCTION("Kfe6nDcyy0c", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_29F7BA9C3732CB47); - LIB_FUNCTION("KnMt8zGsyzc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_2A732DF331ACCB37); - LIB_FUNCTION("KqAWYOx1tvs", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_2AA01660EC75B6FB); - LIB_FUNCTION("KzfLzpQcFoE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_2B37CBCE941C1681); - LIB_FUNCTION("LKo7ZNBUTlU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_2CAA3B64D0544E55); - LIB_FUNCTION("LM15YX7BCnU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_2CCD79617EC10A75); - LIB_FUNCTION("LNi2lxasBmc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_2CD8B69716AC0667); - LIB_FUNCTION("LXT3wP+bXpw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_2D74F7C0FF9B5E9C); - LIB_FUNCTION("LcpagIBUTpU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_2DCA5A8080544E95); - LIB_FUNCTION("LmnydDznzlc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_2E69F2743CE7CE57); - LIB_FUNCTION("Lq8fO6-wUn0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_2EAF1F3BAFF0527D); - LIB_FUNCTION("MUk+VbtOj2Y", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_31493E55BB4E8F66); - LIB_FUNCTION("MX7crQD7X14", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_317EDCAD00FB5F5E); - LIB_FUNCTION("MeAc+ooYzaI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_31E01CFA8A18CDA2); - LIB_FUNCTION("Mq-XgqBhtSY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_32AFD782A061B526); - LIB_FUNCTION("MrXN6wk7gYk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_32B5CDEB093B8189); - LIB_FUNCTION("NBVRUlE8k64", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_34155152513C93AE); - LIB_FUNCTION("NOTv-472yf4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_34E4EFFF8EF6C9FE); - LIB_FUNCTION("NXL6DVxUVjs", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_3572FA0D5C54563B); - LIB_FUNCTION("NnxHmyZODbk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_367C479B264E0DB9); - LIB_FUNCTION("NohPvJZLKcw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_36884FBC964B29CC); - LIB_FUNCTION("OGAIG7dVmUk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_3860081BB7559949); - LIB_FUNCTION("OTFPfmdKsTI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_39314F7E674AB132); - LIB_FUNCTION("OgLngPzFVqU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_3A02E780FCC556A5); - LIB_FUNCTION("Ohe4hbpISbY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_3A17B885BA4849B6); - LIB_FUNCTION("OjjqyupeI6Q", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_3A38EACAEA5E23A4); - LIB_FUNCTION("OzSl4H8NvB8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_3B34A5E07F0DBC1F); - LIB_FUNCTION("O06P-AD8fqQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_3B4E8FFC00FC7EA4); - LIB_FUNCTION("O6sY-aI1EHo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_3BAB18FDA235107A); - LIB_FUNCTION("O9+ZlqCjPxE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_3BDF9996A0A33F11); - LIB_FUNCTION("PBlS8aRcw3o", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_3C1952F1A45CC37A); - LIB_FUNCTION("PKN5Bs2wXzs", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_3CA37906CDB05F3B); - LIB_FUNCTION("PNspCKzuOm8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_3CDB2908ACEE3A6F); - LIB_FUNCTION("PT7RZfK9zTM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_3D3ED165F2BDCD33); - LIB_FUNCTION("PaTX0Vdfzc4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_3DA4D7D1575FCDCE); - LIB_FUNCTION("Pd+2Es0Lx2k", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_3DDFB612CD0BC769); - LIB_FUNCTION("PgQV4Wfercc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_3E0415E167DEADC7); - LIB_FUNCTION("Pn6fDxWBweY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_3E7E9F0F1581C1E6); - LIB_FUNCTION("PtOJ24KA7WU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_3ED389DB8280ED65); - LIB_FUNCTION("Pwx-bAw1SH0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_3F0C7F6C0C35487D); - LIB_FUNCTION("P9pyADie8NI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_3FDA7200389EF0D2); - LIB_FUNCTION("P-PCWLpRblg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_3FF3C258BA516E58); - LIB_FUNCTION("QClFP2KKPF0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_4029453F628A3C5D); - LIB_FUNCTION("QFgm3bSuU44", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_405826DDB4AE538E); - LIB_FUNCTION("QFqSZ1nyWGU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_405A926759F25865); - LIB_FUNCTION("QGYI-e566Io", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_406608FDEE7AE88A); - LIB_FUNCTION("QN2lVYwX3c8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_40DDA5558C17DDCF); - LIB_FUNCTION("QZ0S5S-2BmQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_419D12E52FF60664); - LIB_FUNCTION("QpblOUdL538", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_4296E539474BE77F); - LIB_FUNCTION("QvQfxWPMNlQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_42F41FC563CC3654); - LIB_FUNCTION("Q8zIb0yTAmo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_43CCC86F4C93026A); - LIB_FUNCTION("RAn2C9q8ZeE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_4409F60BDABC65E1); - LIB_FUNCTION("RWPHCuxnU4I", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_4563C70AEC675382); - LIB_FUNCTION("ReZjcCGb0F4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_45E66370219BD05E); - LIB_FUNCTION("RmpU8HJ4VpY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_466A54F072785696); - LIB_FUNCTION("Rs0lNpdvIJo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_46CD2536976F209A); - LIB_FUNCTION("SGNxe9L90Vc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_4863717BD2FDD157); - LIB_FUNCTION("SQLr0ZomMUk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_4902EBD19A263149); - LIB_FUNCTION("SQT3-o2D9Aw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_4904F7FE8D83F40C); - LIB_FUNCTION("Sl4T94Sr-Oc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_4A5E13F784ABFCE7); - LIB_FUNCTION("S2XusTXBJ4E", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_4B65EEB135C12781); - LIB_FUNCTION("TBnUmXjaheI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_4C19D49978DA85E2); - LIB_FUNCTION("TeXWIP9m8TY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_4DE5D620FF66F136); - LIB_FUNCTION("ThcMErV6j54", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_4E170C12B57A8F9E); - LIB_FUNCTION("Ti8-pAXDJgw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_4E2F3FA405C3260C); - LIB_FUNCTION("Tqk1BXdRO00", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_4EA9350577513B4D); - LIB_FUNCTION("T3jrb8S18h8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_4F78EB6FC4B5F21F); - LIB_FUNCTION("UDSL5DMRF7c", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_50348BE4331117B7); - LIB_FUNCTION("UIx+jN0oHKo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_508C7E8CDD281CAA); - LIB_FUNCTION("UhwdLAKPWn4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_521C1D2C028F5A7E); - LIB_FUNCTION("Ui-ySjXmcpE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_522FF24A35E67291); - LIB_FUNCTION("VHD+kMJc3Uw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_5470FE90C25CDD4C); - LIB_FUNCTION("VX8mD5pKzRg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_557F260F9A4ACD18); - LIB_FUNCTION("VYb5cgnzkes", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_5586F97209F391EB); - LIB_FUNCTION("VbLJt62pXDw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_55B2C9B7ADA95C3C); - LIB_FUNCTION("VbSIo6VAuTY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_55B488A3A540B936); - LIB_FUNCTION("VkLf6Cr0MUM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_5642DFE82AF43143); - LIB_FUNCTION("V04EbylK4Yc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_574E046F294AE187); - LIB_FUNCTION("V4km6-iqbL8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_578926EBF8AA6CBF); - LIB_FUNCTION("WF2l-GUIlrw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_585DA5FC650896BC); - LIB_FUNCTION("WNbrJzSewnY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_58D6EB27349EC276); - LIB_FUNCTION("WQa3MXlJhy0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_5906B7317949872D); - LIB_FUNCTION("WRC1YUM1vnA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_5910B5614335BE70); - LIB_FUNCTION("WT19qJEfCMk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_593D7DA8911F08C9); - LIB_FUNCTION("WXV-5qk7DVM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_59757FE6A93B0D53); - LIB_FUNCTION("WY5g+GKxFB4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_598E60F862B1141E); - LIB_FUNCTION("WkU1FmZoDa8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_5A45351666680DAF); - LIB_FUNCTION("Wqvp6nAuan8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_5AABE9EA702E6A7F); - LIB_FUNCTION("WupK5HI1W4A", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_5AEA4AE472355B80); - LIB_FUNCTION("WyDlPN5Zh0E", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_5B20E53CDE598741); - LIB_FUNCTION("W0gLWfrpR+A", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_5B480B59FAE947E0); - LIB_FUNCTION("W17sI2kKub0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_5B5EEC23690AB9BD); - LIB_FUNCTION("XArFsK8+2uA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_5C0AC5B0AF3EDAE0); - LIB_FUNCTION("XS6Zm+oHYtQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_5D2E999BEA0762D4); - LIB_FUNCTION("XVW7-UURDhY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_5D55BBFD45110E16); - LIB_FUNCTION("Xe4VQD0rtf0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_5DEE15403D2BB5FD); - LIB_FUNCTION("YCDHCMp0sTA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_6020C708CA74B130); - LIB_FUNCTION("YG4UFVA8NNI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_606E1415503C34D2); - LIB_FUNCTION("YSFA6O6aaT4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_612140E8EE9A693E); - LIB_FUNCTION("YfE-VR2vYd8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_61F13F551DAF61DF); - LIB_FUNCTION("YgbTkTF1Iyg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_6206D39131752328); - LIB_FUNCTION("Yh1FQ+8DRN4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_621D4543EF0344DE); - LIB_FUNCTION("YlmpqOVtAnM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_6259A9A8E56D0273); - LIB_FUNCTION("Yl+ccBY0b04", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_625F9C7016346F4E); - LIB_FUNCTION("Yu+N90bNjEo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_62EF8DF746CD8C4A); - LIB_FUNCTION("Y20qmf0eays", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_636D2A99FD1E6B2B); - LIB_FUNCTION("aAE+32b+dCU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_68013EDF66FE7425); - LIB_FUNCTION("aXH3Bn3WOdE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_6971F7067DD639D1); - LIB_FUNCTION("aYlq2zq0ELI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_69896ADB3AB410B2); - LIB_FUNCTION("ahOJqm5WE4c", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_6A1389AA6E561387); - LIB_FUNCTION("alVg2J8Ssuc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_6A5560D89F12B2E7); - LIB_FUNCTION("ar+Zz4VKvPE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_6ABF99CF854ABCF1); - LIB_FUNCTION("a0-dxlANjcs", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_6B4FDDC6500D8DCB); - LIB_FUNCTION("bKEdW0nRkoo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_6CA11D5B49D1928A); - LIB_FUNCTION("bWwPth5tBxU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_6D6C0FB61E6D0715); - LIB_FUNCTION("bXUHRf4TSPU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_6D750745FE1348F5); - LIB_FUNCTION("bhrz+dCZFL4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_6E1AF3F9D09914BE); - LIB_FUNCTION("blPtTAiypSE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_6E53ED4C08B2A521); - LIB_FUNCTION("bvQ6yh7WuWg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_6EF43ACA1ED6B968); - LIB_FUNCTION("b2+gnz4bamA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_6F6FA09F3E1B6A60); - LIB_FUNCTION("cDXDQMcZWQE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_7035C340C7195901); - LIB_FUNCTION("cDjiHLXPZBs", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_7038E21CB5CF641B); - LIB_FUNCTION("cGNF3NpbpE0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_706345DCDA5BA44D); - LIB_FUNCTION("cSBxTr8Qvx8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_7120714EBF10BF1F); - LIB_FUNCTION("cT0oqRvIA90", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_713D28A91BC803DD); - LIB_FUNCTION("cVO9dqU6oBI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_7153BD76A53AA012); - LIB_FUNCTION("cVxiXMcEG2s", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_715C625CC7041B6B); - LIB_FUNCTION("ceRnvbGHEdA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_71E467BDB18711D0); - LIB_FUNCTION("cg0XllwfTj8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_720D17965C1F4E3F); - LIB_FUNCTION("c0OAybz2W5o", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_734380C9BCF65B9A); - LIB_FUNCTION("c-TAjM1LvM8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_73F4C08CCD4BBCCF); - LIB_FUNCTION("dEAxAbeynUY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_74403101B7B29D46); - LIB_FUNCTION("dSWwgazWb-Q", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_7525B081ACD66FF4); - LIB_FUNCTION("db9Ed8E6Bco", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_75BF4477C13A05CA); - LIB_FUNCTION("dgl5P1mHxvc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_7609793F5987C6F7); - LIB_FUNCTION("dhbtAbBHaao", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_7616ED01B04769AA); - LIB_FUNCTION("dk+HPZGhJNg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_764F873D91A124D8); - LIB_FUNCTION("dwbx4SMFlWU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_7706F1E123059565); - LIB_FUNCTION("d-LQfrbYBuY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_77F2D07EB6D806E6); - LIB_FUNCTION("ecNwTNzVnlc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_79C3704CDCD59E57); - LIB_FUNCTION("edoLuiE1FUU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_79DA0BBA21351545); - LIB_FUNCTION("efokR7Xz8MQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_79FA2447B5F3F0C4); - LIB_FUNCTION("ek1vZf9hlaU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_7A4D6F65FF6195A5); - LIB_FUNCTION("ezGVzRFN7Oc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_7B3195CD114DECE7); - LIB_FUNCTION("ezI48jAa020", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_7B3238F2301AD36D); - LIB_FUNCTION("fHf8cHUKMmY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_7C77FC70750A3266); - LIB_FUNCTION("fSOp3EWdbRg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_7D23A9DC459D6D18); - LIB_FUNCTION("fVmIx0jQoF8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_7D5988C748D0A05F); - LIB_FUNCTION("fZWXFHqZ9PQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_7D9597147A99F4F4); - LIB_FUNCTION("filT9Afdg0Y", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_7E2953F407DD8346); - LIB_FUNCTION("fuNOUJlwmzI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_7EE34E5099709B32); - LIB_FUNCTION("gEcOVRHVygA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_80470E5511D5CA00); - LIB_FUNCTION("gHF5cBwI8Gk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_807179701C08F069); - LIB_FUNCTION("gJboH-ryTkY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_8096E81FFAF24E46); - LIB_FUNCTION("gLdk9PG4cEI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_80B764F4F1B87042); - LIB_FUNCTION("gL9pFDitAIs", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_80BF691438AD008B); - LIB_FUNCTION("gM9s-JYBJEI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_80CF6CFC96012442); - LIB_FUNCTION("gOp3L4wFGf0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_80EA772F8C0519FD); - LIB_FUNCTION("gdCv0AhNMno", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_81D0AFD0084D327A); - LIB_FUNCTION("gh64pyF2-Wc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_821EB8A72176FD67); - LIB_FUNCTION("gtL6tUEnJz8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_82D2FAB54127273F); - LIB_FUNCTION("g2rmacQqWek", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_836AE669C42A59E9); - LIB_FUNCTION("hVmiW-7DUYw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_8559A25BFEC3518C); - LIB_FUNCTION("hcH2bHZ6SdI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_85C1F66C767A49D2); - LIB_FUNCTION("hontE4P4e6c", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_8689ED1383F87BA7); - LIB_FUNCTION("h5bNnlNV06Y", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_8796CD9E5355D3A6); - LIB_FUNCTION("h9N+tt3BnZk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_87D37EB6DDC19D99); - LIB_FUNCTION("iAqkj3D4T90", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_880AA48F70F84FDD); - LIB_FUNCTION("iXsHViCTZls", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_897B07562093665B); - LIB_FUNCTION("isr1XxY2gIc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_8ACAF55F16368087); - LIB_FUNCTION("iuilWJsw1OA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_8AE8A5589B30D4E0); - LIB_FUNCTION("iumXkJgxszE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_8AE997909831B331); - LIB_FUNCTION("iy1kC+DQ+5k", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_8B2D640BE0D0FB99); - LIB_FUNCTION("iz2atGaNrss", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_8B3D9AB4668DAECB); - LIB_FUNCTION("i176qqzgtGw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_8B5EFAAAACE0B46C); - LIB_FUNCTION("jCeUP0CpiNs", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_8C27943F40A988DB); - LIB_FUNCTION("jFQJbHX18tA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_8C54096C75F5F2D0); - LIB_FUNCTION("jXZjoKUWiBQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_8D7663A0A5168814); - LIB_FUNCTION("jmGPUJmU+tc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_8E618F509994FAD7); - LIB_FUNCTION("jxnmzAZOK5g", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_8F19E6CC064E2B98); - LIB_FUNCTION("j2qK6u6SL-U", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_8F6A8AEAEE922FF5); - LIB_FUNCTION("kBDhrY67+8o", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_9010E1AD8EBBFBCA); - LIB_FUNCTION("kKlVoOcAGuk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_90A955A0E7001AE9); - LIB_FUNCTION("kPnWBn-uzAU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_90F9D6067FEECC05); - LIB_FUNCTION("k0jz0ZVGodo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_9348F3D19546A1DA); - LIB_FUNCTION("k9PAEdsZOIo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_93D3C011DB19388A); - LIB_FUNCTION("lW56T9n4kQM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_956E7A4FD9F89103); - LIB_FUNCTION("lfaZ4ELD5A8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_95F699E042C3E40F); - LIB_FUNCTION("lod7OaoOhzU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_96877B39AA0E8735); - LIB_FUNCTION("ls4HxJ7SNOo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_96CE07C49ED234EA); - LIB_FUNCTION("l2uxeCNbVoE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_976BB178235B5681); - LIB_FUNCTION("l4wLJeWIxNY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_978C0B25E588C4D6); - LIB_FUNCTION("mLomEr7yONY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_98BA2612BEF238D6); - LIB_FUNCTION("mVvdSTGvkTc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_995BDD4931AF9137); - LIB_FUNCTION("mWbjmpJrclA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_9966E39A926B7250); - LIB_FUNCTION("mcIwbxiWNGQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_99C2306F18963464); - LIB_FUNCTION("mcksYTt3a6c", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_99C92C613B776BA7); - LIB_FUNCTION("mk5Lk4zIrTk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_9A4E4B938CC8AD39); - LIB_FUNCTION("myP3tLf3IIE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_9B23F7B4B7F72081); - LIB_FUNCTION("nA6u6ucFqNs", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_9C0EAEEAE705A8DB); - LIB_FUNCTION("nUesWVRd6eg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_9D47AC59545DE9E8); - LIB_FUNCTION("oTBS2LGyrPo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_A13052D8B1B2ACFA); - LIB_FUNCTION("oapD46ePb2I", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_A1AA43E3A78F6F62); - LIB_FUNCTION("oeSM31Rknck", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_A1E48CDF54649DC9); - LIB_FUNCTION("oufe5bCvXRQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_A2E7DEE5B0AF5D14); - LIB_FUNCTION("ovXH-Z-xE-U", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_A2F5C7FD9FF113F5); - LIB_FUNCTION("o2KW4iadRrw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_A36296E2269D46BC); - LIB_FUNCTION("o+4qe58NiK8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_A3EE2A7B9F0D88AF); - LIB_FUNCTION("pEcfn34L+oI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_A4471F9F7E0BFA82); - LIB_FUNCTION("pEm7pSHqNOE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_A449BBA521EA34E1); - LIB_FUNCTION("pI5mbDNOcmw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_A48E666C334E726C); - LIB_FUNCTION("pJt0SbTd5pw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_A49B7449B4DDE69C); - LIB_FUNCTION("pXSEURJcnqQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_A5748451125C9EA4); - LIB_FUNCTION("ppCijWSMwXY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_A690A28D648CC176); - LIB_FUNCTION("pqht4bHLsdk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_A6A86DE1B1CBB1D9); - LIB_FUNCTION("qPK7e4FXQKE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_A8F2BB7B815740A1); - LIB_FUNCTION("qT9kwGpvc5c", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_A93F64C06A6F7397); - LIB_FUNCTION("qzWSX8l9aqM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_AB35925FC97D6AA3); - LIB_FUNCTION("rAFKosmR+ik", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_AC014AA2C991FA29); - LIB_FUNCTION("rAbhCQFASus", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_AC06E10901404AEB); - LIB_FUNCTION("rHXGiBNSNQU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_AC75C68813523505); - LIB_FUNCTION("rUQbxJcILD4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_AD441BC497082C3E); - LIB_FUNCTION("rU8l8CHTVMM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_AD4F25F021D354C3); - LIB_FUNCTION("rfoEqFVBpP4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_ADFA04A85541A4FE); - LIB_FUNCTION("rpYQprUheiM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_AE9610A6B5217A23); - LIB_FUNCTION("ryAZI4JvClg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_AF201923826F0A58); - LIB_FUNCTION("r8AhtDico-o", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_AFC021B4389CA3FA); - LIB_FUNCTION("sBXpmaM3PY8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_B015E999A3373D8F); - LIB_FUNCTION("sDhLhhB-xlI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_B0384B86107FC652); - LIB_FUNCTION("sMYwZTsxZWM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_B0C630653B316563); - LIB_FUNCTION("sQDczYjVxz0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_B100DCCD88D5C73D); - LIB_FUNCTION("sRo-6l5NnqQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_B11A3FEA5E4D9EA4); - LIB_FUNCTION("suf43BmcC5M", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_B2E7F8DC199C0B93); - LIB_FUNCTION("s6thopb23cg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_B3AB61A296F6DDC8); - LIB_FUNCTION("s-MvauYZ7II", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_B3F32F6AE619EC82); - LIB_FUNCTION("tCJ6shO-jPU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_B4227AB213BF8CF5); - LIB_FUNCTION("tGUr9CtgQ2A", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_B4652BF42B604360); - LIB_FUNCTION("tTbB8Tv+l8s", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_B536C1F13BFE97CB); - LIB_FUNCTION("tkXMJkGEvIk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_B645CC264184BC89); - LIB_FUNCTION("tn4XsVgsb70", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_B67E17B1582C6FBD); - LIB_FUNCTION("ttBHxddpWk0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_B6D047C5D7695A4D); - LIB_FUNCTION("t17Y4epi78c", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_B75ED8E1EA62EFC7); - LIB_FUNCTION("t6mpRNvX4QA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_B7A9A944DBD7E100); - LIB_FUNCTION("t8TnW+lPMfM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_B7C4E75BE94F31F3); - LIB_FUNCTION("uIix+SxGQSE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_B888B1F92C464121); - LIB_FUNCTION("uN7CJWSqBXs", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_B8DEC22564AA057B); - LIB_FUNCTION("ubrdHLu65Pg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_B9BADD1CBBBAE4F8); - LIB_FUNCTION("uqn3FpyF5Z8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_BAA9F7169C85E59F); - LIB_FUNCTION("uu5cOJCNYts", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_BAEE5C38908D62DB); - LIB_FUNCTION("vMhV6yUYP4Q", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_BCC855EB25183F84); - LIB_FUNCTION("vQH2NwKcc2Q", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_BD01F637029C7364); - LIB_FUNCTION("vdKfWscHflM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_BDD29F5AC7077E53); - LIB_FUNCTION("vtg90z7K1Q0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_BED83DD33ECAD50D); - LIB_FUNCTION("vufV0Jir9yg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_BEE7D5D098ABF728); - LIB_FUNCTION("wNsVzPWa5iw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_C0DB15CCF59AE62C); - LIB_FUNCTION("wcIp-uD9YPo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_C1C229FEE0FD60FA); - LIB_FUNCTION("wii5rWgpjpg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_C228B9AD68298E98); - LIB_FUNCTION("wphSXO9vsoM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_C298525CEF6FB283); - LIB_FUNCTION("w1Dwk1H21rU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_C350F09351F6D6B5); - LIB_FUNCTION("w3QugPpYAxk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_C3742E80FA580319); - LIB_FUNCTION("w8mFPV1NRdQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_C3C9853D5D4D45D4); - LIB_FUNCTION("w-Xa1Pufw0A", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_C3F5DAD4FB9FC340); - LIB_FUNCTION("xF+w5MzprtY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_C45FB0E4CCE9AED6); - LIB_FUNCTION("xJecuUi348c", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_C4979CB948B7E3C7); - LIB_FUNCTION("xJsluhbPC4w", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_C49B25BA16CF0B8C); - LIB_FUNCTION("xVE0XZYxIB4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_C551345D9631201E); - LIB_FUNCTION("xXopRCE2gpg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_C57A294421368298); - LIB_FUNCTION("xdyRytch1ig", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_C5DC91CAD721D628); - LIB_FUNCTION("xt7O5YkTU1c", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_C6DECEE589135357); - LIB_FUNCTION("yB+LINZ6x40", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_C81F8B20D67AC78D); - LIB_FUNCTION("yCD6VvrIe+o", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_C820FA56FAC87BEA); - LIB_FUNCTION("yHjqkRTF5JA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_C878EA9114C5E490); - LIB_FUNCTION("yKgT6-9HdQk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_C8A813EBFF477509); - LIB_FUNCTION("yWamY9WjVII", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_C966A663D5A35482); - LIB_FUNCTION("yXxMZ-02dNM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_C97C4C67FD3674D3); - LIB_FUNCTION("yZBVDxWEiwc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_C990550F15848B07); - LIB_FUNCTION("yllzeo7Bu74", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_CA59737A8EC1BBBE); - LIB_FUNCTION("ysX96PgNe2U", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_CAC5FDE8F80D7B65); - LIB_FUNCTION("yxNbMNBjm4M", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_CB135B30D0639B83); - LIB_FUNCTION("y4oaqmH2TDo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_CB8A1AAA61F64C3A); - LIB_FUNCTION("y55nRnJYB1c", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_CB9E674672580757); - LIB_FUNCTION("zCudJerqqx0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_CC2B9D25EAEAAB1D); - LIB_FUNCTION("zRslK77fW1M", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_CD1B252BBEDF5B53); - LIB_FUNCTION("zwA76Qy+Gic", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_CF003BE90CBE1A27); - LIB_FUNCTION("zwCONIhKweI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_CF008E34884AC1E2); - LIB_FUNCTION("0Lj0s6NoerI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_D0B8F4B3A3687AB2); - LIB_FUNCTION("0O4ZuOkfYPU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_D0EE19B8E91F60F5); - LIB_FUNCTION("0SuSlL0OD1Y", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_D12B9294BD0E0F56); - LIB_FUNCTION("0cyGJtj6Mos", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_D1CC8626D8FA328B); - LIB_FUNCTION("0vorueuLY6w", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_D2FA2BB9EB8B63AC); - LIB_FUNCTION("0yGXiAz5POs", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_D32197880CF93CEB); - LIB_FUNCTION("0yb1wmzIG44", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_D326F5C26CC81B8E); - LIB_FUNCTION("1PoGuVoyG3o", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_D4FA06B95A321B7A); - LIB_FUNCTION("1So3qQHgSyE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_D52A37A901E04B21); - LIB_FUNCTION("1VBN-DmatAA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_D5504DFC399AB400); - LIB_FUNCTION("1WEFyyf49dw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_D56105CB27F8F5DC); - LIB_FUNCTION("1WirGSNeyxk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_D568AB19235ECB19); - LIB_FUNCTION("1t979mOf5hE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_D6DF7BF6639FE611); - LIB_FUNCTION("2GCKkDEZ10Y", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_D8608A903119D746); - LIB_FUNCTION("2ej8cH1ZkU0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_D9E8FC707D59914D); - LIB_FUNCTION("2fB55i3uWyk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_D9F079E62DEE5B29); - LIB_FUNCTION("2hfOTyl0hTY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_DA17CE4F29748536); - LIB_FUNCTION("2kC579f2EYU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_DA40B9EFD7F61185); - LIB_FUNCTION("2msnT+vCZmo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_DA6B274FEBC2666A); - LIB_FUNCTION("2tAVNch6Ufw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_DAD01535C87A51FC); - LIB_FUNCTION("20UR1EhRDsQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_DB4511D448510EC4); - LIB_FUNCTION("247x--xmJpw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_DB8EF1FFFC66269C); - LIB_FUNCTION("27UI+hudqPc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_DBB508FA1B9DA8F7); - LIB_FUNCTION("3FnJuHC3KaI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_DC59C9B870B729A2); - LIB_FUNCTION("3Gae1sv2dRw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_DC669ED6CBF6751C); - LIB_FUNCTION("3LiihJpByZE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_DCB8A2849A41C991); - LIB_FUNCTION("3Y+ZFtfwOvc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_DD8F9916D7F03AF7); - LIB_FUNCTION("3cM-L05IDCo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_DDC33F2F4E480C2A); - LIB_FUNCTION("3gtCC96LItc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_DE0B420BDE8B22D7); - LIB_FUNCTION("4MC8KYmP43A", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_E0C0BC29898FE370); - LIB_FUNCTION("4M2JPkb7Vbo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_E0CD893E46FB55BA); - LIB_FUNCTION("4lUwFkt-ZZ8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_E25530164B7F659F); - LIB_FUNCTION("42gvQ-33bFg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_E3682F43FDF76C58); - LIB_FUNCTION("44F34ceKgPo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_E38177E1C78A80FA); - LIB_FUNCTION("48p0z-ll3wo", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_E3CA74CFF965DF0A); - LIB_FUNCTION("5FuxkbSbLtk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_E45BB191B49B2ED9); - LIB_FUNCTION("5GW51rYObX0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_E465B9D6B60E6D7D); - LIB_FUNCTION("5NgodsKWw4o", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_E4D82876C296C38A); - LIB_FUNCTION("5N21NQ+ltTg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_E4DDB5350FA5B538); - LIB_FUNCTION("5Uv-b7crx74", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_E54BFF6FB72BC7BE); - LIB_FUNCTION("5ZKpMgMCC7s", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_E592A93203020BBB); - LIB_FUNCTION("5aRK9tfUiv0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_E5A44AF6D7D48AFD); - LIB_FUNCTION("5jmpfPn-FDA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_E639A97CF9FF1430); - LIB_FUNCTION("5qwBeeSKiSc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_E6AC0179E48A8927); - LIB_FUNCTION("51FZZoJ3XYM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_E751596682775D83); - LIB_FUNCTION("54ix5S74JwI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_E788B1E52EF82702); - LIB_FUNCTION("6U8XYT9cnTE", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_E94F17613F5C9D31); - LIB_FUNCTION("6VkBExKNVeA", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_E9590113128D55E0); - LIB_FUNCTION("6eCw3RJWCxY", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_E9E0B0DD12560B16); - LIB_FUNCTION("6vXI7OZMewU", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_EAF5C8ECE64C7B05); - LIB_FUNCTION("65i-XELUp+s", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_EB98BF5C42D4A7EB); - LIB_FUNCTION("66vEqsQ6Row", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_EBABC4AAC43A468C); - LIB_FUNCTION("6-AAhfCCzIs", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_EBF00085F082CC8B); - LIB_FUNCTION("7LZZ7gWNBq8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_ECB659EE058D06AF); - LIB_FUNCTION("7PCWq3UUh64", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_ECF096AB751487AE); - LIB_FUNCTION("7lonFwHbM8A", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_EE5A271701DB33C0); - LIB_FUNCTION("72TLahYlJI4", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_EF64CB6A1625248E); - LIB_FUNCTION("72yKNXx+2GM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_EF6C8A357C7ED863); - LIB_FUNCTION("8A-pT35pmZQ", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_F00FE94F7E699994); - LIB_FUNCTION("8aUdujAykDg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_F1A51DBA30329038); - LIB_FUNCTION("8hbnZqkP3BI", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_F216E766A90FDC12); - LIB_FUNCTION("8qEFhKvl2Cw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_F2A10584ABE5D82C); - LIB_FUNCTION("8tmdOV5UIaM", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_F2D99D395E5421A3); - LIB_FUNCTION("84AB5Si6E3E", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_F38001E528BA1371); - LIB_FUNCTION("857JyPp2h7M", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_F39EC9C8FA7687B3); - LIB_FUNCTION("86--3NYyd1w", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_F3AFFFDCD632775C); - LIB_FUNCTION("87jf8zdIv9M", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_F3B8DFF33748BFD3); - LIB_FUNCTION("9eR-lVD3oUc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_F5E47F9550F7A147); - LIB_FUNCTION("9uk3FNGpOc8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_F6E93714D1A939CF); - LIB_FUNCTION("9v0ZrUjk7wk", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_F6FD19AD48E4EF09); - LIB_FUNCTION("90Tr-GIPfL8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_F744EBFC620F7CBF); - LIB_FUNCTION("925FJay6zH8", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_F76E4525ACBACC7F); - LIB_FUNCTION("95V6SIgvQss", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_F7957A48882F42CB); - LIB_FUNCTION("96gLB4CbqDg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_F7A80B07809BA838); - LIB_FUNCTION("+FccbMW2tZ0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_F8571C6CC5B6B59D); - LIB_FUNCTION("+Xh8+oc4Nvs", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_F9787CFA873836FB); - LIB_FUNCTION("+nifbTTTg-g", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_FA789F6D34D383F8); - LIB_FUNCTION("+rpXQIOsHmw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_FABA574083AC1E6C); - LIB_FUNCTION("-AT9u642j7c", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_FC04FDBBAE368FB7); - LIB_FUNCTION("-S2vvy5A7uc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_FD2DAFBF2E40EEE7); - LIB_FUNCTION("-VXubTX5UK0", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_FD55EE6D35F950AD); - LIB_FUNCTION("-lXuMgmNDVg", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_FE55EE32098D0D58); - LIB_FUNCTION("-nmEECLh2hw", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_FE79841022E1DA1C); - LIB_FUNCTION("--Sj4nn7RKc", "libSceNpCommon", 1, "libSceNpCommon", 1, 1, Func_FFF4A3E279FB44A7); -}; - -} // namespace Libraries::NpCommon \ No newline at end of file diff --git a/src/core/libraries/np_common/np_common.h b/src/core/libraries/np_common/np_common.h deleted file mode 100644 index 2ef3f5e69..000000000 --- a/src/core/libraries/np_common/np_common.h +++ /dev/null @@ -1,1245 +0,0 @@ -// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project -// SPDX-License-Identifier: GPL-2.0-or-later - -#pragma once - -#include "common/types.h" - -namespace Core::Loader { -class SymbolsResolver; -} - -namespace Libraries::NpCommon { - -constexpr int ORBIS_NP_ONLINEID_MAX_LENGTH = 16; - -struct OrbisNpOnlineId { - char data[ORBIS_NP_ONLINEID_MAX_LENGTH]; - s8 term; - s8 dummy[3]; -}; - -struct OrbisNpId { - OrbisNpOnlineId handle; - u8 opt[8]; - u8 reserved[8]; -}; - -int PS4_SYSV_ABI sceNpCmpNpId(OrbisNpId* np_id1, OrbisNpId* np_id2); -int PS4_SYSV_ABI sceNpCmpNpIdInOrder(OrbisNpId* np_id1, OrbisNpId* np_id2, u32* out_result); -int PS4_SYSV_ABI sceNpCmpOnlineId(OrbisNpOnlineId* online_id1, OrbisNpOnlineId* online_id2); -int PS4_SYSV_ABI _sceNpAllocatorExConvertAllocator(); -int PS4_SYSV_ABI _sceNpAllocatorExFree(); -int PS4_SYSV_ABI _sceNpAllocatorExMalloc(); -int PS4_SYSV_ABI _sceNpAllocatorExRealloc(); -int PS4_SYSV_ABI _sceNpAllocatorExStrdup(); -int PS4_SYSV_ABI _sceNpAllocatorExStrndup(); -int PS4_SYSV_ABI _sceNpAllocatorFree(); -int PS4_SYSV_ABI _sceNpAllocatorMalloc(); -int PS4_SYSV_ABI _sceNpAllocatorRealloc(); -int PS4_SYSV_ABI _sceNpAllocatorStrdup(); -int PS4_SYSV_ABI _sceNpAllocatorStrndup(); -int PS4_SYSV_ABI _sceNpFree(); -int PS4_SYSV_ABI _sceNpHeapFree(); -int PS4_SYSV_ABI _sceNpHeapMalloc(); -int PS4_SYSV_ABI _sceNpHeapRealloc(); -int PS4_SYSV_ABI _sceNpHeapStrdup(); -int PS4_SYSV_ABI _sceNpHeapStrndup(); -int PS4_SYSV_ABI _sceNpMalloc(); -int PS4_SYSV_ABI _sceNpRealloc(); -int PS4_SYSV_ABI _ZN3sce2np10Cancelable10IsCanceledEv(); -int PS4_SYSV_ABI _ZN3sce2np10Cancelable10LockCancelEPKciS3_(); -int PS4_SYSV_ABI _ZN3sce2np10Cancelable11CheckCancelEPKciS3_(); -int PS4_SYSV_ABI _ZN3sce2np10Cancelable12UnlockCancelEPKciS3_(); -int PS4_SYSV_ABI _ZN3sce2np10Cancelable13SetCancelableEb(); -int PS4_SYSV_ABI _ZN3sce2np10Cancelable14SetupSubCancelEPS1_PKciS4_(); -int PS4_SYSV_ABI _ZN3sce2np10Cancelable16CleanupSubCancelEPS1_(); -int PS4_SYSV_ABI _ZN3sce2np10Cancelable4InitEv(); -int PS4_SYSV_ABI _ZN3sce2np10Cancelable6CancelEij(); -int PS4_SYSV_ABI _ZN3sce2np10Cancelable7DestroyEv(); -int PS4_SYSV_ABI _ZN3sce2np10CancelableC2Ev(); -int PS4_SYSV_ABI _ZN3sce2np10CancelableD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np10CancelableD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np10CancelableD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np10CancelLock3EndEPKciS3_(); -int PS4_SYSV_ABI _ZN3sce2np10CancelLock5BeginEPNS0_6HandleEPKciS5_(); -int PS4_SYSV_ABI _ZN3sce2np10CancelLockC1Ev(); -int PS4_SYSV_ABI _ZN3sce2np10CancelLockC2Ev(); -int PS4_SYSV_ABI _ZN3sce2np10CancelLockD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np10CancelLockD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np10EventQueue10ClearAbortEt(); -int PS4_SYSV_ABI _ZN3sce2np10EventQueue10TryDequeueEPvm(); -int PS4_SYSV_ABI _ZN3sce2np10EventQueue4ctorEv(); -int PS4_SYSV_ABI _ZN3sce2np10EventQueue4dtorEv(); -int PS4_SYSV_ABI _ZN3sce2np10EventQueue4InitEPKcmm(); -int PS4_SYSV_ABI _ZN3sce2np10EventQueue5AbortEt(); -int PS4_SYSV_ABI _ZN3sce2np10EventQueue7DequeueEPvmj(); -int PS4_SYSV_ABI _ZN3sce2np10EventQueue7DestroyEv(); -int PS4_SYSV_ABI _ZN3sce2np10EventQueue7EnqueueEPKvmj(); -int PS4_SYSV_ABI _ZN3sce2np10EventQueueC2EP16SceNpAllocatorEx(); -int PS4_SYSV_ABI _ZN3sce2np10EventQueueD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np10EventQueueD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np10EventQueueD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np10JsonNumber5ClearEv(); -int PS4_SYSV_ABI _ZN3sce2np10JsonNumber6SetNumEi(); -int PS4_SYSV_ABI _ZN3sce2np10JsonNumber6SetNumEj(); -int PS4_SYSV_ABI _ZN3sce2np10JsonNumber6SetNumEl(); -int PS4_SYSV_ABI _ZN3sce2np10JsonNumber6SetNumEm(); -int PS4_SYSV_ABI _ZN3sce2np10JsonNumber6SetNumEPKc(); -int PS4_SYSV_ABI _ZN3sce2np10JsonObject16DeleteFieldValueEPKc(); -int PS4_SYSV_ABI _ZN3sce2np10JsonObject5ClearEv(); -int PS4_SYSV_ABI _ZN3sce2np10JsonParser4InitEPK7JsonDefPNS1_12EventHandlerE(); -int PS4_SYSV_ABI _ZN3sce2np10JsonParser5ParseEPKcm(); -int PS4_SYSV_ABI _ZN3sce2np10JsonParserC2EP16SceNpAllocatorEx(); -int PS4_SYSV_ABI _ZN3sce2np10JsonParserD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np10JsonParserD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np10JsonParserD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np10JsonString5ClearEv(); -int PS4_SYSV_ABI _ZN3sce2np10JsonString6SetStrEPKc(); -int PS4_SYSV_ABI _ZN3sce2np10MemoryFile4ReadEPNS0_6HandleEPvmPm(); -int PS4_SYSV_ABI _ZN3sce2np10MemoryFile4SyncEv(); -int PS4_SYSV_ABI _ZN3sce2np10MemoryFile5CloseEv(); -int PS4_SYSV_ABI _ZN3sce2np10MemoryFile5WriteEPNS0_6HandleEPKvmPm(); -int PS4_SYSV_ABI _ZN3sce2np10MemoryFile8TruncateEl(); -int PS4_SYSV_ABI _ZN3sce2np10MemoryFileC2EP16SceNpAllocatorEx(); -int PS4_SYSV_ABI _ZN3sce2np10MemoryFileD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np10MemoryFileD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np10MemoryFileD2Ev(); -int PS4_SYSV_ABI -_ZN3sce2np12HttpTemplate19SetAuthInfoCallbackEPFii15SceHttpAuthTypePKcPcS5_iPPhPmPiPvESA_(); -int PS4_SYSV_ABI _ZN3sce2np12HttpTemplate4InitEiPKcib(); -int PS4_SYSV_ABI _ZN3sce2np12HttpTemplate7DestroyEv(); -int PS4_SYSV_ABI _ZN3sce2np12HttpTemplateC1Ev(); -int PS4_SYSV_ABI _ZN3sce2np12HttpTemplateC2Ev(); -int PS4_SYSV_ABI _ZN3sce2np12HttpTemplateD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np12HttpTemplateD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np12HttpTemplateD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np12StreamBufferixEi(); -int PS4_SYSV_ABI _ZN3sce2np12StreamReader4ReadEPNS0_6HandleEPNS0_9StreamCtxEPvmPm(); -int PS4_SYSV_ABI _ZN3sce2np12StreamReader7ReadAllEPNS0_6HandleEPNS0_9StreamCtxEPvmPm(); -int PS4_SYSV_ABI _ZN3sce2np12StreamReader7ReadAllEPNS0_6HandleEPvmPm(); -int PS4_SYSV_ABI _ZN3sce2np12StreamReader8ReadDataEPNS0_6HandleEPNS0_9StreamCtxEPvmPm(); -int PS4_SYSV_ABI _ZN3sce2np12StreamReader8ReadDataEPNS0_6HandleEPvmPm(); -int PS4_SYSV_ABI _ZN3sce2np12StreamReader8SkipDataEPNS0_6HandleElPl(); -int PS4_SYSV_ABI _ZN3sce2np12StreamReader8SkipDataEPNS0_6HandleEPNS0_9StreamCtxElPl(); -int PS4_SYSV_ABI _ZN3sce2np12StreamWriter15WriteFilledDataEPNS0_6HandleEcl(); -int PS4_SYSV_ABI _ZN3sce2np12StreamWriter15WriteFilledDataEPNS0_6HandleEPNS0_9StreamCtxEcl(); -int PS4_SYSV_ABI _ZN3sce2np12StreamWriter5WriteEPNS0_6HandleEPNS0_9StreamCtxEPKvmPm(); -int PS4_SYSV_ABI _ZN3sce2np12StreamWriter9WriteDataEPNS0_6HandleEPKvmPm(); -int PS4_SYSV_ABI _ZN3sce2np12StreamWriter9WriteDataEPNS0_6HandleEPNS0_9StreamCtxEPKvmPm(); -int PS4_SYSV_ABI _ZN3sce2np12WorkerThread10ThreadMainEv(); -int PS4_SYSV_ABI _ZN3sce2np12WorkerThreadC1EPNS0_9WorkQueueE(); -int PS4_SYSV_ABI _ZN3sce2np12WorkerThreadC2EPNS0_9WorkQueueE(); -int PS4_SYSV_ABI _ZN3sce2np12WorkerThreadD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np12WorkerThreadD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np12WorkerThreadD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np13JsonDocParser5ParseEPKcm(); -int PS4_SYSV_ABI _ZN3sce2np13JsonDocParser9GetResultEPPNS0_10JsonObjectE(); -int PS4_SYSV_ABI _ZN3sce2np13JsonDocParser9GetResultEPPNS0_9JsonValueE(); -int PS4_SYSV_ABI _ZN3sce2np13JsonDocParserC2EP16SceNpAllocatorExPK7JsonDef(); -int PS4_SYSV_ABI _ZN3sce2np13JsonDocParserD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np13JsonDocParserD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np13JsonDocParserD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np13NpTitleSecret5ClearEv(); -int PS4_SYSV_ABI _ZN3sce2np13NpTitleSecretC1EPKvm(); -int PS4_SYSV_ABI _ZN3sce2np13NpTitleSecretC1ERK16SceNpTitleSecret(); -int PS4_SYSV_ABI _ZN3sce2np13NpTitleSecretC1ERKS1_(); -int PS4_SYSV_ABI _ZN3sce2np13NpTitleSecretC1Ev(); -int PS4_SYSV_ABI _ZN3sce2np13NpTitleSecretC2EPKvm(); -int PS4_SYSV_ABI _ZN3sce2np13NpTitleSecretC2ERK16SceNpTitleSecret(); -int PS4_SYSV_ABI _ZN3sce2np13NpTitleSecretC2ERKS1_(); -int PS4_SYSV_ABI _ZN3sce2np13NpTitleSecretC2Ev(); -int PS4_SYSV_ABI _ZN3sce2np13NpTitleSecretD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np13NpTitleSecretD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np13NpTitleSecretD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np13RingBufMemory4ctorEv(); -int PS4_SYSV_ABI _ZN3sce2np13RingBufMemory4dtorEv(); -int PS4_SYSV_ABI _ZN3sce2np13RingBufMemory4InitEm(); -int PS4_SYSV_ABI _ZN3sce2np13RingBufMemory6ExpandEm(); -int PS4_SYSV_ABI _ZN3sce2np13RingBufMemory6IsInitEv(); -int PS4_SYSV_ABI _ZN3sce2np13RingBufMemory7DestroyEv(); -int PS4_SYSV_ABI _ZN3sce2np13RingBufMemoryC2EP16SceNpAllocatorEx(); -int PS4_SYSV_ABI _ZN3sce2np13RingBufMemoryD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np13RingBufMemoryD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np13RingBufMemoryD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np14CalloutContext4InitEPKcimm(); -int PS4_SYSV_ABI _ZN3sce2np14CalloutContext4InitEPKNS1_5ParamE(); -int PS4_SYSV_ABI _ZN3sce2np14CalloutContext7DestroyEv(); -int PS4_SYSV_ABI _ZN3sce2np14CalloutContextC1Ev(); -int PS4_SYSV_ABI _ZN3sce2np14CalloutContextC2Ev(); -int PS4_SYSV_ABI _ZN3sce2np14CalloutContextD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np14CalloutContextD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np14CalloutContextD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np14JsonDocBuilder12BuildBufSizeEv(); -int PS4_SYSV_ABI _ZN3sce2np14JsonDocBuilder16EscapeJsonStringEPKcPcmPm(); -int PS4_SYSV_ABI _ZN3sce2np14JsonDocBuilder23EscapeJsonStringBufSizeEPKc(); -int PS4_SYSV_ABI _ZN3sce2np14JsonDocBuilder5BuildEPcmPm(); -int PS4_SYSV_ABI _ZN3sce2np14JsonDocBuilderC1ERKNS0_9JsonValueE(); -int PS4_SYSV_ABI _ZN3sce2np14JsonDocBuilderC2ERKNS0_9JsonValueE(); -int PS4_SYSV_ABI _ZN3sce2np14JsonDocBuilderD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np14JsonDocBuilderD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np14JsonDocBuilderD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np15CancelableScope3EndEiPKciS3_(); -int PS4_SYSV_ABI _ZN3sce2np15CancelableScope5BeginEPNS0_6HandleEPKciS5_(); -int PS4_SYSV_ABI _ZN3sce2np15CancelableScopeC2Ev(); -int PS4_SYSV_ABI _ZN3sce2np15CancelableScopeD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np15CancelableScopeD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np15CancelableScopeD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np16StreamReadBufferC2EP16SceNpAllocatorEx(); -int PS4_SYSV_ABI _ZN3sce2np16StreamReadBufferD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np16StreamReadBufferD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np18HttpConnectionPool13InvalidateAllEv(); -int PS4_SYSV_ABI _ZN3sce2np18HttpConnectionPool4InitEi(); -int PS4_SYSV_ABI _ZN3sce2np18HttpConnectionPool7DestroyEv(); -int PS4_SYSV_ABI _ZN3sce2np18HttpConnectionPoolC1EP16SceNpAllocatorEx(); -int PS4_SYSV_ABI _ZN3sce2np18HttpConnectionPoolC2EP16SceNpAllocatorEx(); -int PS4_SYSV_ABI _ZN3sce2np18HttpConnectionPoolD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np18HttpConnectionPoolD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np18HttpConnectionPoolD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np18MemoryStreamReader4ReadEPNS0_6HandleEPvmPm(); -int PS4_SYSV_ABI _ZN3sce2np18MemoryStreamReaderC1EPKvm(); -int PS4_SYSV_ABI _ZN3sce2np18MemoryStreamReaderC2EPKvm(); -int PS4_SYSV_ABI _ZN3sce2np18MemoryStreamReaderD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np18MemoryStreamReaderD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np18MemoryStreamReaderD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np18MemoryStreamWriter5WriteEPNS0_6HandleEPKvmPm(); -int PS4_SYSV_ABI _ZN3sce2np18MemoryStreamWriterC1EPvm(); -int PS4_SYSV_ABI _ZN3sce2np18MemoryStreamWriterC2EPvm(); -int PS4_SYSV_ABI _ZN3sce2np18MemoryStreamWriterD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np18MemoryStreamWriterD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np18MemoryStreamWriterD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np20BufferedStreamReader4ReadEPNS0_6HandleEPvmPm(); -int PS4_SYSV_ABI _ZN3sce2np20BufferedStreamReader5CloseEv(); -int PS4_SYSV_ABI _ZN3sce2np20BufferedStreamReaderC2EP16SceNpAllocatorEx(); -int PS4_SYSV_ABI _ZN3sce2np20BufferedStreamReaderD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np20BufferedStreamReaderD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np20BufferedStreamReaderD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np3ipc10IpmiClient10DisconnectEv(); -int PS4_SYSV_ABI _ZN3sce2np3ipc10IpmiClient11IsConnectedEv(); -int PS4_SYSV_ABI _ZN3sce2np3ipc10IpmiClient16invokeSyncMethodEjPKvmPvPmm(); -int PS4_SYSV_ABI _ZN3sce2np3ipc10IpmiClient4ctorEv(); -int PS4_SYSV_ABI _ZN3sce2np3ipc10IpmiClient4dtorEv(); -int PS4_SYSV_ABI _ZN3sce2np3ipc10IpmiClient4InitEPKNS2_6ConfigE(); -int PS4_SYSV_ABI _ZN3sce2np3ipc10IpmiClient7ConnectEPKvm(); -int PS4_SYSV_ABI _ZN3sce2np3ipc10IpmiClient7DestroyEv(); -int PS4_SYSV_ABI _ZN3sce2np3ipc10IpmiClientC1Ev(); -int PS4_SYSV_ABI _ZN3sce2np3ipc10IpmiClientC2Ev(); -int PS4_SYSV_ABI _ZN3sce2np3ipc10IpmiClientD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np3ipc10IpmiClientD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np3ipc10IpmiClientD2Ev(); -int PS4_SYSV_ABI -_ZN3sce2np3ipc13ServiceClientC1EPNS1_17ServiceIpmiClientEPKNS1_17ServiceClientInfoE(); -int PS4_SYSV_ABI -_ZN3sce2np3ipc13ServiceClientC2EPNS1_17ServiceIpmiClientEPKNS1_17ServiceClientInfoE(); -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient10DisconnectEv(); -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient10EndRequestEii(); -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient11findServiceEi(); -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient11InitServiceEi(); -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient11TermServiceEi(); -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient11WaitRequestEiij(); -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient12AbortRequestEii(); -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient12BeginRequestEii(); -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient13CreateRequestEPiiPKvm(); -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient13DeleteRequestEii(); -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient13PollEventFlagEijmjPm(); -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient13WaitEventFlagEijmjPmj(); -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient14PollEventQueueEiPvm(); -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient15CancelEventFlagEijm(); -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient15RegisterServiceEPKNS1_17ServiceClientInfoE(); -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient16RegisterServicesEPKNS1_17ServiceClientInfoE(); -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient17invokeInitServiceEi(); -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient17invokeTermServiceEi(); -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient17UnregisterServiceEi(); -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient18EndRequestForAsyncEii(); -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient19WaitRequestForAsyncEiij(); -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient20AbortRequestForAsyncEii(); -int PS4_SYSV_ABI -_ZN3sce2np3ipc17ServiceIpmiClient20BeginRequestForAsyncEiiPN4IPMI6Client12EventNotifeeE(); -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient21CreateRequestForAsyncEPiiPKvm(); -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient21DeleteRequestForAsyncEii(); -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient4ctorEv(); -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient4dtorEv(); -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient4InitEPNS2_6ConfigE(); -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient7ConnectEPKvm(); -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClient7DestroyEv(); -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClientC1Ev(); -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClientC2Ev(); -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClientD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClientD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np3ipc17ServiceIpmiClientD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np4Cond4ctorEv(); -int PS4_SYSV_ABI _ZN3sce2np4Cond4dtorEv(); -int PS4_SYSV_ABI _ZN3sce2np4Cond4InitEPKcPNS0_5MutexE(); -int PS4_SYSV_ABI _ZN3sce2np4Cond4WaitEj(); -int PS4_SYSV_ABI _ZN3sce2np4Cond6SignalEv(); -int PS4_SYSV_ABI _ZN3sce2np4Cond7DestroyEv(); -int PS4_SYSV_ABI _ZN3sce2np4Cond9SignalAllEv(); -int PS4_SYSV_ABI _ZN3sce2np4CondC1Ev(); -int PS4_SYSV_ABI _ZN3sce2np4CondC2Ev(); -int PS4_SYSV_ABI _ZN3sce2np4CondD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np4CondD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np4CondD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np4Path11BuildAppendEPcmcPKcm(); -int PS4_SYSV_ABI _ZN3sce2np4Path12AddDelimiterEPcmc(); -int PS4_SYSV_ABI _ZN3sce2np4Path5ClearEv(); -int PS4_SYSV_ABI _ZN3sce2np4Path6SetStrEPKcm(); -int PS4_SYSV_ABI _ZN3sce2np4PathD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np4PathD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np4PathD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np4Time10AddMinutesEl(); -int PS4_SYSV_ABI _ZN3sce2np4Time10AddSecondsEl(); -int PS4_SYSV_ABI _ZN3sce2np4Time12GetUserClockEPS1_(); -int PS4_SYSV_ABI _ZN3sce2np4Time15AddMicroSecondsEl(); -int PS4_SYSV_ABI _ZN3sce2np4Time15GetNetworkClockEPS1_(); -int PS4_SYSV_ABI _ZN3sce2np4Time20GetDebugNetworkClockEPS1_(); -int PS4_SYSV_ABI _ZN3sce2np4Time7AddDaysEl(); -int PS4_SYSV_ABI _ZN3sce2np4Time8AddHoursEl(); -int PS4_SYSV_ABI _ZN3sce2np4TimeplERK10SceRtcTick(); -int PS4_SYSV_ABI _ZN3sce2np4TimeplERKS1_(); -int PS4_SYSV_ABI _ZN3sce2np5Mutex4ctorEv(); -int PS4_SYSV_ABI _ZN3sce2np5Mutex4dtorEv(); -int PS4_SYSV_ABI _ZN3sce2np5Mutex4InitEPKcj(); -int PS4_SYSV_ABI _ZN3sce2np5Mutex4LockEv(); -int PS4_SYSV_ABI _ZN3sce2np5Mutex6UnlockEv(); -int PS4_SYSV_ABI _ZN3sce2np5Mutex7DestroyEv(); -int PS4_SYSV_ABI _ZN3sce2np5Mutex7TryLockEv(); -int PS4_SYSV_ABI _ZN3sce2np5MutexC1Ev(); -int PS4_SYSV_ABI _ZN3sce2np5MutexC2Ev(); -int PS4_SYSV_ABI _ZN3sce2np5MutexD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np5MutexD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np5MutexD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np5NpEnv8GetNpEnvEPS1_(); -int PS4_SYSV_ABI _ZN3sce2np6Handle10CancelImplEi(); -int PS4_SYSV_ABI _ZN3sce2np6Handle4InitEv(); -int PS4_SYSV_ABI _ZN3sce2np6Handle7DestroyEv(); -int PS4_SYSV_ABI _ZN3sce2np6HandleC1Ev(); -int PS4_SYSV_ABI _ZN3sce2np6HandleC2Ev(); -int PS4_SYSV_ABI _ZN3sce2np6HandleD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np6HandleD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np6HandleD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np6ObjectdaEPv(); -int PS4_SYSV_ABI _ZN3sce2np6ObjectdaEPvR14SceNpAllocator(); -int PS4_SYSV_ABI _ZN3sce2np6ObjectdaEPvR16SceNpAllocatorEx(); -int PS4_SYSV_ABI _ZN3sce2np6ObjectdlEPv(); -int PS4_SYSV_ABI _ZN3sce2np6ObjectdlEPvR14SceNpAllocator(); -int PS4_SYSV_ABI _ZN3sce2np6ObjectdlEPvR16SceNpAllocatorEx(); -int PS4_SYSV_ABI _ZN3sce2np6ObjectnaEmR14SceNpAllocator(); -int PS4_SYSV_ABI _ZN3sce2np6ObjectnaEmR16SceNpAllocatorEx(); -int PS4_SYSV_ABI _ZN3sce2np6ObjectnwEmR14SceNpAllocator(); -int PS4_SYSV_ABI _ZN3sce2np6ObjectnwEmR16SceNpAllocatorEx(); -int PS4_SYSV_ABI _ZN3sce2np6Thread12DoThreadMainEv(); -int PS4_SYSV_ABI _ZN3sce2np6Thread4ctorEv(); -int PS4_SYSV_ABI _ZN3sce2np6Thread4dtorEv(); -int PS4_SYSV_ABI _ZN3sce2np6Thread4InitEPKcimm(); -int PS4_SYSV_ABI _ZN3sce2np6Thread4InitEPKNS1_5ParamE(); -int PS4_SYSV_ABI _ZN3sce2np6Thread4JoinEPi(); -int PS4_SYSV_ABI _ZN3sce2np6Thread5StartEv(); -int PS4_SYSV_ABI _ZN3sce2np6Thread7DestroyEv(); -int PS4_SYSV_ABI _ZN3sce2np6Thread9EntryFuncEPv(); -int PS4_SYSV_ABI _ZN3sce2np6Thread9GetResultEv(); -int PS4_SYSV_ABI _ZN3sce2np6Thread9IsRunningEv(); -int PS4_SYSV_ABI _ZN3sce2np6ThreadC2Ev(); -int PS4_SYSV_ABI _ZN3sce2np6ThreadD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np6ThreadD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np6ThreadD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np7Callout10IsTimedoutEv(); -int PS4_SYSV_ABI _ZN3sce2np7Callout11CalloutFuncEPv(); -int PS4_SYSV_ABI _ZN3sce2np7Callout4StopEv(); -int PS4_SYSV_ABI _ZN3sce2np7Callout5StartEjPNS1_7HandlerE(); -int PS4_SYSV_ABI _ZN3sce2np7Callout5StartEmPNS1_7HandlerE(); -int PS4_SYSV_ABI _ZN3sce2np7Callout9IsStartedEv(); -int PS4_SYSV_ABI _ZN3sce2np7CalloutC1EPNS0_14CalloutContextE(); -int PS4_SYSV_ABI _ZN3sce2np7CalloutC2EPNS0_14CalloutContextE(); -int PS4_SYSV_ABI _ZN3sce2np7CalloutD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np7CalloutD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np7CalloutD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np7HttpUri5BuildEPKS1_PcmPmj(); -int PS4_SYSV_ABI _ZN3sce2np7HttpUri5ParseEPS1_PKc(); -int PS4_SYSV_ABI _ZN3sce2np7HttpUriC1EP16SceNpAllocatorEx(); -int PS4_SYSV_ABI _ZN3sce2np7HttpUriC2EP16SceNpAllocatorEx(); -int PS4_SYSV_ABI _ZN3sce2np7HttpUriD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np7HttpUriD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np7HttpUriD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np7RingBuf14CheckinForReadEm(); -int PS4_SYSV_ABI _ZN3sce2np7RingBuf15CheckinForWriteEm(); -int PS4_SYSV_ABI _ZN3sce2np7RingBuf15CheckoutForReadEPm(); -int PS4_SYSV_ABI _ZN3sce2np7RingBuf16CheckoutForWriteEPm(); -int PS4_SYSV_ABI _ZN3sce2np7RingBuf4ctorEv(); -int PS4_SYSV_ABI _ZN3sce2np7RingBuf4dtorEv(); -int PS4_SYSV_ABI _ZN3sce2np7RingBuf4InitEPvm(); -int PS4_SYSV_ABI _ZN3sce2np7RingBuf4PeekEmPvm(); -int PS4_SYSV_ABI _ZN3sce2np7RingBuf4ReadEPvm(); -int PS4_SYSV_ABI _ZN3sce2np7RingBuf5ClearEv(); -int PS4_SYSV_ABI _ZN3sce2np7RingBuf5WriteEPKvm(); -int PS4_SYSV_ABI _ZN3sce2np7RingBuf7DestroyEv(); -int PS4_SYSV_ABI _ZN3sce2np7RingBufC1Ev(); -int PS4_SYSV_ABI _ZN3sce2np7RingBufC2Ev(); -int PS4_SYSV_ABI _ZN3sce2np7RingBufD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np7RingBufD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np7RingBufD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np8HttpFile4ReadEPNS0_6HandleEPvmPm(); -int PS4_SYSV_ABI _ZN3sce2np8HttpFile5CloseEv(); -int PS4_SYSV_ABI _ZN3sce2np8HttpFileC2EP16SceNpAllocatorEx(); -int PS4_SYSV_ABI _ZN3sce2np8HttpFileD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np8HttpFileD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np8HttpFileD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np8JsonBool5ClearEv(); -int PS4_SYSV_ABI _ZN3sce2np8JsonBool7SetBoolEb(); -int PS4_SYSV_ABI _ZN3sce2np8JsonFile5CloseEv(); -int PS4_SYSV_ABI _ZN3sce2np8JsonFileD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np8JsonFileD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np8JsonFileD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np8JsonNull5ClearEv(); -int PS4_SYSV_ABI _ZN3sce2np8NpCommId5BuildERKS1_Pcm(); -int PS4_SYSV_ABI _ZN3sce2np8NpCommId5ClearEv(); -int PS4_SYSV_ABI _ZN3sce2np8NpCommId5ParseEPS1_PKc(); -int PS4_SYSV_ABI _ZN3sce2np8NpCommId5ParseEPS1_PKcm(); -int PS4_SYSV_ABI _ZN3sce2np8NpCommIdC1ERK20SceNpCommunicationId(); -int PS4_SYSV_ABI _ZN3sce2np8NpCommIdC1ERKS1_(); -int PS4_SYSV_ABI _ZN3sce2np8NpCommIdC1Ev(); -int PS4_SYSV_ABI _ZN3sce2np8NpCommIdC2ERK20SceNpCommunicationId(); -int PS4_SYSV_ABI _ZN3sce2np8NpCommIdC2ERKS1_(); -int PS4_SYSV_ABI _ZN3sce2np8NpCommIdC2Ev(); -int PS4_SYSV_ABI _ZN3sce2np8NpCommIdD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np8NpCommIdD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np8NpCommIdD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np8Selector4InitEPKc(); -int PS4_SYSV_ABI _ZN3sce2np8SelectorD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np8SelectorD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np8SelectorD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np8WorkItem10SetPendingEv(); -int PS4_SYSV_ABI _ZN3sce2np8WorkItem10SetRunningEv(); -int PS4_SYSV_ABI _ZN3sce2np8WorkItem11SetFinishedEi(); -int PS4_SYSV_ABI _ZN3sce2np8WorkItem14FinishCallbackEv(); -int PS4_SYSV_ABI _ZN3sce2np8WorkItem15RemoveFromQueueEv(); -int PS4_SYSV_ABI _ZN3sce2np8WorkItem6CancelEi(); -int PS4_SYSV_ABI _ZN3sce2np8WorkItem9BindQueueEPNS0_9WorkQueueEi(); -int PS4_SYSV_ABI _ZN3sce2np8WorkItemC2EPKc(); -int PS4_SYSV_ABI _ZN3sce2np8WorkItemD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np8WorkItemD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np8WorkItemD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np9EventFlag3SetEm(); -int PS4_SYSV_ABI _ZN3sce2np9EventFlag4ctorEv(); -int PS4_SYSV_ABI _ZN3sce2np9EventFlag4dtorEv(); -int PS4_SYSV_ABI _ZN3sce2np9EventFlag4OpenEPKc(); -int PS4_SYSV_ABI _ZN3sce2np9EventFlag4PollEmjPm(); -int PS4_SYSV_ABI _ZN3sce2np9EventFlag4WaitEmjPmj(); -int PS4_SYSV_ABI _ZN3sce2np9EventFlag5ClearEm(); -int PS4_SYSV_ABI _ZN3sce2np9EventFlag6CancelEm(); -int PS4_SYSV_ABI _ZN3sce2np9EventFlag6CreateEPKcj(); -int PS4_SYSV_ABI _ZN3sce2np9EventFlag7DestroyEv(); -int PS4_SYSV_ABI _ZN3sce2np9EventFlagC1Ev(); -int PS4_SYSV_ABI _ZN3sce2np9EventFlagC2Ev(); -int PS4_SYSV_ABI _ZN3sce2np9EventFlagD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np9EventFlagD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np9EventFlagD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np9HttpTrans10SetTimeoutEPKNS1_12TimeoutParamE(); -int PS4_SYSV_ABI _ZN3sce2np9HttpTrans11SendRequestEPNS0_6HandleEPKvm(); -int PS4_SYSV_ABI _ZN3sce2np9HttpTrans12RecvResponseEPNS0_6HandleEPvmPm(); -int PS4_SYSV_ABI _ZN3sce2np9HttpTrans12SkipResponseEPNS0_6HandleE(); -int PS4_SYSV_ABI _ZN3sce2np9HttpTrans16AddRequestHeaderEPKcS3_(); -int PS4_SYSV_ABI _ZN3sce2np9HttpTrans16SetRequestHeaderEPKcS3_(); -int PS4_SYSV_ABI _ZN3sce2np9HttpTrans21GetResponseStatusCodeEPNS0_6HandleEPi(); -int PS4_SYSV_ABI _ZN3sce2np9HttpTrans21SetRequestContentTypeEPKc(); -int PS4_SYSV_ABI _ZN3sce2np9HttpTrans23SetRequestContentLengthEm(); -int PS4_SYSV_ABI _ZN3sce2np9HttpTrans24GetResponseContentLengthEPNS0_6HandleEPbPm(); -int PS4_SYSV_ABI _ZN3sce2np9HttpTrans4InitERKNS0_12HttpTemplateEPNS0_18HttpConnectionPoolEiPKcm(); -int PS4_SYSV_ABI -_ZN3sce2np9HttpTrans4InitERKNS0_12HttpTemplateEPNS0_18HttpConnectionPoolEiPKcS8_tS8_m(); -int PS4_SYSV_ABI _ZN3sce2np9HttpTrans4ReadEPNS0_6HandleEPvmPm(); -int PS4_SYSV_ABI _ZN3sce2np9HttpTrans5WriteEPNS0_6HandleEPKvmPm(); -int PS4_SYSV_ABI _ZN3sce2np9HttpTrans7DestroyEv(); -int PS4_SYSV_ABI _ZN3sce2np9HttpTransC1EP16SceNpAllocatorEx(); -int PS4_SYSV_ABI _ZN3sce2np9HttpTransC2EP16SceNpAllocatorEx(); -int PS4_SYSV_ABI _ZN3sce2np9HttpTransD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np9HttpTransD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np9HttpTransD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np9JsonArray12AddItemArrayEPPS1_(); -int PS4_SYSV_ABI _ZN3sce2np9JsonArray5ClearEv(); -int PS4_SYSV_ABI _ZN3sce2np9JsonValue12GetItemValueEi(); -int PS4_SYSV_ABI _ZN3sce2np9JsonValue13GetFieldValueEiPPKc(); -int PS4_SYSV_ABI _ZN3sce2np9JsonValue13GetFieldValueEPKc(); -int PS4_SYSV_ABI _ZN3sce2np9JsonValueD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np9JsonValueD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np9JsonValueD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np9LocalFile4ReadEPNS0_6HandleEPvmPm(); -int PS4_SYSV_ABI _ZN3sce2np9LocalFile4SeekEliPl(); -int PS4_SYSV_ABI _ZN3sce2np9LocalFile4SyncEv(); -int PS4_SYSV_ABI _ZN3sce2np9LocalFile5CloseEv(); -int PS4_SYSV_ABI _ZN3sce2np9LocalFile5WriteEPNS0_6HandleEPKvmPm(); -int PS4_SYSV_ABI _ZN3sce2np9LocalFile6RemoveEPKc(); -int PS4_SYSV_ABI _ZN3sce2np9LocalFile8TruncateEl(); -int PS4_SYSV_ABI _ZN3sce2np9LocalFileC1Ev(); -int PS4_SYSV_ABI _ZN3sce2np9LocalFileC2Ev(); -int PS4_SYSV_ABI _ZN3sce2np9LocalFileD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np9LocalFileD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np9LocalFileD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np9NpTitleId5BuildERKS1_Pcm(); -int PS4_SYSV_ABI _ZN3sce2np9NpTitleId5ClearEv(); -int PS4_SYSV_ABI _ZN3sce2np9NpTitleId5ParseEPS1_PKc(); -int PS4_SYSV_ABI _ZN3sce2np9NpTitleId5ParseEPS1_PKcm(); -int PS4_SYSV_ABI _ZN3sce2np9NpTitleIdC1ERK12SceNpTitleId(); -int PS4_SYSV_ABI _ZN3sce2np9NpTitleIdC1ERKS1_(); -int PS4_SYSV_ABI _ZN3sce2np9NpTitleIdC1Ev(); -int PS4_SYSV_ABI _ZN3sce2np9NpTitleIdC2ERK12SceNpTitleId(); -int PS4_SYSV_ABI _ZN3sce2np9NpTitleIdC2ERKS1_(); -int PS4_SYSV_ABI _ZN3sce2np9NpTitleIdC2Ev(); -int PS4_SYSV_ABI _ZN3sce2np9NpTitleIdD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np9NpTitleIdD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np9NpTitleIdD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np9RefObject6AddRefEv(); -int PS4_SYSV_ABI _ZN3sce2np9RefObject7ReleaseEv(); -int PS4_SYSV_ABI _ZN3sce2np9RefObjectC1Ev(); -int PS4_SYSV_ABI _ZN3sce2np9RefObjectC2Ev(); -int PS4_SYSV_ABI _ZN3sce2np9RefObjectD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np9RefObjectD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np9RefObjectD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np9Semaphore4OpenEPKc(); -int PS4_SYSV_ABI _ZN3sce2np9Semaphore4WaitEj(); -int PS4_SYSV_ABI _ZN3sce2np9Semaphore6CreateEiiPKc(); -int PS4_SYSV_ABI _ZN3sce2np9Semaphore6SignalEv(); -int PS4_SYSV_ABI _ZN3sce2np9Semaphore7DestroyEv(); -int PS4_SYSV_ABI _ZN3sce2np9SemaphoreC1Ev(); -int PS4_SYSV_ABI _ZN3sce2np9SemaphoreC2Ev(); -int PS4_SYSV_ABI _ZN3sce2np9SemaphoreD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np9SemaphoreD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np9SemaphoreD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np9WorkQueue11GetItemByIdEi(); -int PS4_SYSV_ABI _ZN3sce2np9WorkQueue15GetFinishedItemENS0_14WorkItemStatusE(); -int PS4_SYSV_ABI _ZN3sce2np9WorkQueue16WorkItemFinishedEPNS0_8WorkItemEi(); -int PS4_SYSV_ABI _ZN3sce2np9WorkQueue17ProcFinishedItemsENS0_14WorkItemStatusE(); -int PS4_SYSV_ABI _ZN3sce2np9WorkQueue18RemoveFinishedItemEPNS0_8WorkItemE(); -int PS4_SYSV_ABI _ZN3sce2np9WorkQueue18WaitForPendingItemEPPNS0_8WorkItemEPb(); -int PS4_SYSV_ABI _ZN3sce2np9WorkQueue4ctorEv(); -int PS4_SYSV_ABI _ZN3sce2np9WorkQueue4dtorEv(); -int PS4_SYSV_ABI _ZN3sce2np9WorkQueue4InitEPKcimm(); -int PS4_SYSV_ABI _ZN3sce2np9WorkQueue4InitEPKNS0_6Thread5ParamE(); -int PS4_SYSV_ABI _ZN3sce2np9WorkQueue4StopEv(); -int PS4_SYSV_ABI _ZN3sce2np9WorkQueue5StartEv(); -int PS4_SYSV_ABI _ZN3sce2np9WorkQueue6CancelEii(); -int PS4_SYSV_ABI _ZN3sce2np9WorkQueue6IsInitEv(); -int PS4_SYSV_ABI _ZN3sce2np9WorkQueue7DestroyEv(); -int PS4_SYSV_ABI _ZN3sce2np9WorkQueue7EnqueueEiPNS0_8WorkItemE(); -int PS4_SYSV_ABI _ZN3sce2np9WorkQueue9CancelAllEi(); -int PS4_SYSV_ABI _ZN3sce2np9WorkQueue9IsRunningEv(); -int PS4_SYSV_ABI _ZN3sce2np9WorkQueueC1Ev(); -int PS4_SYSV_ABI _ZN3sce2np9WorkQueueC2Ev(); -int PS4_SYSV_ABI _ZN3sce2np9WorkQueueD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np9WorkQueueD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np9WorkQueueD2Ev(); -int PS4_SYSV_ABI _ZN3sce2npeqERK10SceRtcTickRKNS0_4TimeE(); -int PS4_SYSV_ABI _ZN3sce2npeqERK12SceNpTitleIdRKNS0_9NpTitleIdE(); -int PS4_SYSV_ABI _ZN3sce2npeqERK16SceNpTitleSecretRKNS0_13NpTitleSecretE(); -int PS4_SYSV_ABI _ZN3sce2npeqERK20SceNpCommunicationIdRKNS0_8NpCommIdE(); -int PS4_SYSV_ABI _ZN3sce2npeqERKNS0_13NpTitleSecretERK16SceNpTitleSecret(); -int PS4_SYSV_ABI _ZN3sce2npeqERKNS0_13NpTitleSecretES3_(); -int PS4_SYSV_ABI _ZN3sce2npeqERKNS0_4TimeERK10SceRtcTick(); -int PS4_SYSV_ABI _ZN3sce2npeqERKNS0_4TimeES3_(); -int PS4_SYSV_ABI _ZN3sce2npeqERKNS0_8NpCommIdERK20SceNpCommunicationId(); -int PS4_SYSV_ABI _ZN3sce2npeqERKNS0_8NpCommIdES3_(); -int PS4_SYSV_ABI _ZN3sce2npeqERKNS0_9NpTitleIdERK12SceNpTitleId(); -int PS4_SYSV_ABI _ZN3sce2npeqERKNS0_9NpTitleIdES3_(); -int PS4_SYSV_ABI _ZN3sce2npgeERK10SceRtcTickRKNS0_4TimeE(); -int PS4_SYSV_ABI _ZN3sce2npgeERKNS0_4TimeERK10SceRtcTick(); -int PS4_SYSV_ABI _ZN3sce2npgeERKNS0_4TimeES3_(); -int PS4_SYSV_ABI _ZN3sce2npgtERK10SceRtcTickRKNS0_4TimeE(); -int PS4_SYSV_ABI _ZN3sce2npgtERKNS0_4TimeERK10SceRtcTick(); -int PS4_SYSV_ABI _ZN3sce2npgtERKNS0_4TimeES3_(); -int PS4_SYSV_ABI _ZN3sce2npleERK10SceRtcTickRKNS0_4TimeE(); -int PS4_SYSV_ABI _ZN3sce2npleERKNS0_4TimeERK10SceRtcTick(); -int PS4_SYSV_ABI _ZN3sce2npleERKNS0_4TimeES3_(); -int PS4_SYSV_ABI _ZN3sce2npltERK10SceRtcTickRKNS0_4TimeE(); -int PS4_SYSV_ABI _ZN3sce2npltERKNS0_4TimeERK10SceRtcTick(); -int PS4_SYSV_ABI _ZN3sce2npltERKNS0_4TimeES3_(); -int PS4_SYSV_ABI _ZN3sce2npneERK10SceRtcTickRKNS0_4TimeE(); -int PS4_SYSV_ABI _ZN3sce2npneERK12SceNpTitleIdRKNS0_9NpTitleIdE(); -int PS4_SYSV_ABI _ZN3sce2npneERK16SceNpTitleSecretRKNS0_13NpTitleSecretE(); -int PS4_SYSV_ABI _ZN3sce2npneERK20SceNpCommunicationIdRKNS0_8NpCommIdE(); -int PS4_SYSV_ABI _ZN3sce2npneERKNS0_13NpTitleSecretERK16SceNpTitleSecret(); -int PS4_SYSV_ABI _ZN3sce2npneERKNS0_13NpTitleSecretES3_(); -int PS4_SYSV_ABI _ZN3sce2npneERKNS0_4TimeERK10SceRtcTick(); -int PS4_SYSV_ABI _ZN3sce2npneERKNS0_4TimeES3_(); -int PS4_SYSV_ABI _ZN3sce2npneERKNS0_8NpCommIdERK20SceNpCommunicationId(); -int PS4_SYSV_ABI _ZN3sce2npneERKNS0_8NpCommIdES3_(); -int PS4_SYSV_ABI _ZN3sce2npneERKNS0_9NpTitleIdERK12SceNpTitleId(); -int PS4_SYSV_ABI _ZN3sce2npneERKNS0_9NpTitleIdES3_(); -int PS4_SYSV_ABI _ZNK3sce2np10Cancelable6IsInitEv(); -int PS4_SYSV_ABI _ZNK3sce2np10EventQueue6IsInitEv(); -int PS4_SYSV_ABI _ZNK3sce2np10EventQueue7IsEmptyEv(); -int PS4_SYSV_ABI _ZNK3sce2np10JsonNumber5CloneEP16SceNpAllocatorEx(); -int PS4_SYSV_ABI _ZNK3sce2np10JsonNumber6GetNumEPcm(); -int PS4_SYSV_ABI _ZNK3sce2np10JsonNumber6GetNumEPi(); -int PS4_SYSV_ABI _ZNK3sce2np10JsonNumber6GetNumEPj(); -int PS4_SYSV_ABI _ZNK3sce2np10JsonNumber6GetNumEPl(); -int PS4_SYSV_ABI _ZNK3sce2np10JsonNumber6GetNumEPm(); -int PS4_SYSV_ABI _ZNK3sce2np10JsonNumber9GetNumStrEv(); -int PS4_SYSV_ABI _ZNK3sce2np10JsonObject5CloneEP16SceNpAllocatorEx(); -int PS4_SYSV_ABI _ZNK3sce2np10JsonString5CloneEP16SceNpAllocatorEx(); -int PS4_SYSV_ABI _ZNK3sce2np10JsonString6GetStrEPcm(); -int PS4_SYSV_ABI _ZNK3sce2np10JsonString6GetStrEv(); -int PS4_SYSV_ABI _ZNK3sce2np10JsonString9GetLengthEv(); -int PS4_SYSV_ABI _ZNK3sce2np12HttpTemplate6IsInitEv(); -int PS4_SYSV_ABI _ZNK3sce2np18HttpConnectionPool6IsInitEv(); -int PS4_SYSV_ABI _ZNK3sce2np3ipc10IpmiClient6IsInitEv(); -int PS4_SYSV_ABI _ZNK3sce2np3ipc17ServiceIpmiClient6IsInitEv(); -int PS4_SYSV_ABI _ZNK3sce2np4Cond6IsInitEv(); -int PS4_SYSV_ABI _ZNK3sce2np4Time18ConvertToPosixTimeEPl(); -int PS4_SYSV_ABI _ZNK3sce2np5Mutex6IsInitEv(); -int PS4_SYSV_ABI _ZNK3sce2np6Handle6IsInitEv(); -int PS4_SYSV_ABI _ZNK3sce2np6Thread6IsInitEv(); -int PS4_SYSV_ABI _ZNK3sce2np7RingBuf11GetDataSizeEv(); -int PS4_SYSV_ABI _ZNK3sce2np7RingBuf11GetFreeSizeEv(); -int PS4_SYSV_ABI _ZNK3sce2np7RingBuf6IsFullEv(); -int PS4_SYSV_ABI _ZNK3sce2np7RingBuf7IsEmptyEv(); -int PS4_SYSV_ABI _ZNK3sce2np8JsonBool5CloneEP16SceNpAllocatorEx(); -int PS4_SYSV_ABI _ZNK3sce2np8JsonBool7GetBoolEv(); -int PS4_SYSV_ABI _ZNK3sce2np8JsonNull5CloneEP16SceNpAllocatorEx(); -int PS4_SYSV_ABI _ZNK3sce2np8NpCommId7IsEmptyEv(); -int PS4_SYSV_ABI _ZNK3sce2np9EventFlag6IsInitEv(); -int PS4_SYSV_ABI _ZNK3sce2np9HttpTrans6IsInitEv(); -int PS4_SYSV_ABI _ZNK3sce2np9JsonArray5CloneEP16SceNpAllocatorEx(); -int PS4_SYSV_ABI _ZNK3sce2np9JsonValue12GetItemValueEi(); -int PS4_SYSV_ABI _ZNK3sce2np9NpTitleId7IsEmptyEv(); -int PS4_SYSV_ABI _ZNK3sce2np9Semaphore6IsInitEv(); -int PS4_SYSV_ABI _ZThn16_N3sce2np10MemoryFile5WriteEPNS0_6HandleEPKvmPm(); -int PS4_SYSV_ABI _ZThn16_N3sce2np10MemoryFileD0Ev(); -int PS4_SYSV_ABI _ZThn16_N3sce2np10MemoryFileD1Ev(); -int PS4_SYSV_ABI _ZThn16_N3sce2np9HttpTrans5WriteEPNS0_6HandleEPKvmPm(); -int PS4_SYSV_ABI _ZThn16_N3sce2np9HttpTransD0Ev(); -int PS4_SYSV_ABI _ZThn16_N3sce2np9HttpTransD1Ev(); -int PS4_SYSV_ABI _ZThn16_N3sce2np9LocalFile5WriteEPNS0_6HandleEPKvmPm(); -int PS4_SYSV_ABI _ZThn16_N3sce2np9LocalFileD0Ev(); -int PS4_SYSV_ABI _ZThn16_N3sce2np9LocalFileD1Ev(); -int PS4_SYSV_ABI _ZThn8_N3sce2np10MemoryFile4ReadEPNS0_6HandleEPvmPm(); -int PS4_SYSV_ABI _ZThn8_N3sce2np10MemoryFileD0Ev(); -int PS4_SYSV_ABI _ZThn8_N3sce2np10MemoryFileD1Ev(); -int PS4_SYSV_ABI _ZThn8_N3sce2np6Handle10CancelImplEi(); -int PS4_SYSV_ABI _ZThn8_N3sce2np6HandleD0Ev(); -int PS4_SYSV_ABI _ZThn8_N3sce2np6HandleD1Ev(); -int PS4_SYSV_ABI _ZThn8_N3sce2np9HttpTrans4ReadEPNS0_6HandleEPvmPm(); -int PS4_SYSV_ABI _ZThn8_N3sce2np9HttpTransD0Ev(); -int PS4_SYSV_ABI _ZThn8_N3sce2np9HttpTransD1Ev(); -int PS4_SYSV_ABI _ZThn8_N3sce2np9LocalFile4ReadEPNS0_6HandleEPvmPm(); -int PS4_SYSV_ABI _ZThn8_N3sce2np9LocalFileD0Ev(); -int PS4_SYSV_ABI _ZThn8_N3sce2np9LocalFileD1Ev(); -int PS4_SYSV_ABI _ZTVN3sce2np10JsonNumberE(); -int PS4_SYSV_ABI _ZTVN3sce2np10JsonObjectE(); -int PS4_SYSV_ABI _ZTVN3sce2np10JsonStringE(); -int PS4_SYSV_ABI _ZTVN3sce2np8JsonBoolE(); -int PS4_SYSV_ABI _ZTVN3sce2np8JsonNullE(); -int PS4_SYSV_ABI _ZTVN3sce2np8SelectorE(); -int PS4_SYSV_ABI _ZTVN3sce2np9JsonArrayE(); -int PS4_SYSV_ABI _ZTVN3sce2np9JsonValueE(); -int PS4_SYSV_ABI sceNpAllocateKernelMemoryNoAlignment(); -int PS4_SYSV_ABI sceNpAllocateKernelMemoryWithAlignment(); -int PS4_SYSV_ABI sceNpArchInit(); -int PS4_SYSV_ABI sceNpArchTerm(); -int PS4_SYSV_ABI sceNpAtomicCas32(); -int PS4_SYSV_ABI sceNpAtomicDec32(); -int PS4_SYSV_ABI sceNpAtomicInc32(); -int PS4_SYSV_ABI sceNpBase64Decoder(); -int PS4_SYSV_ABI sceNpBase64Encoder(); -int PS4_SYSV_ABI sceNpBase64GetDecodeSize(); -int PS4_SYSV_ABI sceNpBase64UrlDecoder(); -int PS4_SYSV_ABI sceNpBase64UrlEncoder(); -int PS4_SYSV_ABI sceNpBase64UrlGetDecodeSize(); -int PS4_SYSV_ABI sceNpCalloutInitCtx(); -int PS4_SYSV_ABI sceNpCalloutStartOnCtx(); -int PS4_SYSV_ABI sceNpCalloutStartOnCtx64(); -int PS4_SYSV_ABI sceNpCalloutStopOnCtx(); -int PS4_SYSV_ABI sceNpCalloutTermCtx(); -int PS4_SYSV_ABI sceNpCancelEventFlag(); -int PS4_SYSV_ABI sceNpClearEventFlag(); -int PS4_SYSV_ABI sceNpCloseEventFlag(); -int PS4_SYSV_ABI sceNpCloseSema(); -int PS4_SYSV_ABI sceNpCondDestroy(); -int PS4_SYSV_ABI sceNpCondInit(); -int PS4_SYSV_ABI sceNpCondSignal(); -int PS4_SYSV_ABI sceNpCondSignalAll(); -int PS4_SYSV_ABI sceNpCondSignalTo(); -int PS4_SYSV_ABI sceNpCondTimedwait(); -int PS4_SYSV_ABI sceNpCondWait(); -int PS4_SYSV_ABI sceNpCreateEventFlag(); -int PS4_SYSV_ABI sceNpCreateSema(); -int PS4_SYSV_ABI sceNpCreateThread(); -int PS4_SYSV_ABI sceNpDbgAssignDebugId(); -int PS4_SYSV_ABI sceNpDbgDumpBinary(); -int PS4_SYSV_ABI sceNpDbgDumpText(); -int PS4_SYSV_ABI sceNpDeleteEventFlag(); -int PS4_SYSV_ABI sceNpDeleteSema(); -int PS4_SYSV_ABI sceNpEventGetCurrentNetworkTick(); -int PS4_SYSV_ABI sceNpFreeKernelMemory(); -int PS4_SYSV_ABI sceNpGetNavSdkVersion(); -int PS4_SYSV_ABI sceNpGetPlatformType(); -int PS4_SYSV_ABI sceNpGetProcessId(); -int PS4_SYSV_ABI sceNpGetRandom(); -int PS4_SYSV_ABI sceNpGetSdkVersion(); -int PS4_SYSV_ABI sceNpGetSdkVersionUInt(); -int PS4_SYSV_ABI sceNpGetSystemClockUsec(); -int PS4_SYSV_ABI sceNpGlobalHeapGetAllocator(); -int PS4_SYSV_ABI sceNpGlobalHeapGetAllocatorEx(); -int PS4_SYSV_ABI sceNpGlobalHeapGetAllocatorExPtr(); -int PS4_SYSV_ABI sceNpGlobalHeapGetAllocatorPtr(); -int PS4_SYSV_ABI sceNpHeapDestroy(); -int PS4_SYSV_ABI sceNpHeapGetAllocator(); -int PS4_SYSV_ABI sceNpHeapGetStat(); -int PS4_SYSV_ABI sceNpHeapInit(); -int PS4_SYSV_ABI sceNpHeapShowStat(); -int PS4_SYSV_ABI sceNpHexToInt(); -int PS4_SYSV_ABI sceNpInt32ToStr(); -int PS4_SYSV_ABI sceNpInt64ToStr(); -int PS4_SYSV_ABI sceNpIntGetPlatformType(); -int PS4_SYSV_ABI sceNpIntIsOnlineIdString(); -int PS4_SYSV_ABI sceNpIntIsValidOnlineId(); -int PS4_SYSV_ABI sceNpIntSetPlatformType(); -int PS4_SYSV_ABI sceNpIntToHex(); -int PS4_SYSV_ABI sceNpIpc2ClientInit(); -int PS4_SYSV_ABI sceNpIpc2ClientTerm(); -int PS4_SYSV_ABI sceNpJoinThread(); -int PS4_SYSV_ABI sceNpJsonParse(); -int PS4_SYSV_ABI sceNpJsonParseBuf(); -int PS4_SYSV_ABI sceNpJsonParseBufInit(); -int PS4_SYSV_ABI sceNpJsonParseEx(); -int PS4_SYSV_ABI sceNpJsonParseExInit(); -int PS4_SYSV_ABI sceNpJsonParseInit(); -int PS4_SYSV_ABI sceNpLwCondDestroy(); -int PS4_SYSV_ABI sceNpLwCondInit(); -int PS4_SYSV_ABI sceNpLwCondSignal(); -int PS4_SYSV_ABI sceNpLwCondSignalAll(); -int PS4_SYSV_ABI sceNpLwCondSignalTo(); -int PS4_SYSV_ABI sceNpLwCondWait(); -int PS4_SYSV_ABI sceNpLwMutexDestroy(); -int PS4_SYSV_ABI sceNpLwMutexInit(); -int PS4_SYSV_ABI sceNpLwMutexLock(); -int PS4_SYSV_ABI sceNpLwMutexTryLock(); -int PS4_SYSV_ABI sceNpLwMutexUnlock(); -int PS4_SYSV_ABI sceNpMemoryHeapDestroy(); -int PS4_SYSV_ABI sceNpMemoryHeapGetAllocator(); -int PS4_SYSV_ABI sceNpMemoryHeapGetAllocatorEx(); -int PS4_SYSV_ABI sceNpMemoryHeapInit(); -int PS4_SYSV_ABI sceNpMutexDestroy(); -int PS4_SYSV_ABI sceNpMutexInit(); -int PS4_SYSV_ABI sceNpMutexLock(); -int PS4_SYSV_ABI sceNpMutexTryLock(); -int PS4_SYSV_ABI sceNpMutexUnlock(); -int PS4_SYSV_ABI sceNpOpenEventFlag(); -int PS4_SYSV_ABI sceNpOpenSema(); -int PS4_SYSV_ABI sceNpPanic(); -int PS4_SYSV_ABI sceNpPollEventFlag(); -int PS4_SYSV_ABI sceNpPollSema(); -int PS4_SYSV_ABI sceNpRtcConvertToPosixTime(); -int PS4_SYSV_ABI sceNpRtcFormatRFC3339(); -int PS4_SYSV_ABI sceNpRtcParseRFC3339(); -int PS4_SYSV_ABI sceNpServerErrorJsonGetErrorCode(); -int PS4_SYSV_ABI sceNpServerErrorJsonMultiGetErrorCode(); -int PS4_SYSV_ABI sceNpServerErrorJsonParse(); -int PS4_SYSV_ABI sceNpServerErrorJsonParseInit(); -int PS4_SYSV_ABI sceNpServerErrorJsonParseMultiInit(); -int PS4_SYSV_ABI sceNpSetEventFlag(); -int PS4_SYSV_ABI sceNpSetPlatformType(); -int PS4_SYSV_ABI sceNpSignalSema(); -int PS4_SYSV_ABI sceNpStrBuildHex(); -int PS4_SYSV_ABI sceNpStrcpyToBuf(); -int PS4_SYSV_ABI sceNpStrncpyToBuf(); -int PS4_SYSV_ABI sceNpStrnParseHex(); -int PS4_SYSV_ABI sceNpStrParseHex(); -int PS4_SYSV_ABI sceNpStrToInt32(); -int PS4_SYSV_ABI sceNpStrToInt64(); -int PS4_SYSV_ABI sceNpStrToUInt32(); -int PS4_SYSV_ABI sceNpStrToUInt64(); -int PS4_SYSV_ABI sceNpThreadGetId(); -int PS4_SYSV_ABI sceNpUInt32ToStr(); -int PS4_SYSV_ABI sceNpUInt64ToStr(); -int PS4_SYSV_ABI sceNpUserGetUserIdList(); -int PS4_SYSV_ABI sceNpUtilBuildTitleId(); -int PS4_SYSV_ABI sceNpUtilCanonicalizeNpIdForPs4(); -int PS4_SYSV_ABI sceNpUtilCanonicalizeNpIdForPsp2(); -int PS4_SYSV_ABI sceNpUtilCmpAccountId(); -int PS4_SYSV_ABI sceNpUtilGetDateSetAuto(); -int PS4_SYSV_ABI sceNpUtilGetDbgCommerce(); -int PS4_SYSV_ABI sceNpUtilGetEnv(); -int PS4_SYSV_ABI sceNpUtilGetFakeDisplayNameMode(); -int PS4_SYSV_ABI sceNpUtilGetFakeRateLimit(); -int PS4_SYSV_ABI sceNpUtilGetIgnoreNpTitleId(); -int PS4_SYSV_ABI sceNpUtilGetNpDebug(); -int PS4_SYSV_ABI sceNpUtilGetNpLanguageCode(); -int PS4_SYSV_ABI sceNpUtilGetNpLanguageCode2(); -int PS4_SYSV_ABI sceNpUtilGetNpLanguageCode2Str(); -int PS4_SYSV_ABI sceNpUtilGetNpLanguageCodeStr(); -int PS4_SYSV_ABI sceNpUtilGetNpTestPatch(); -int PS4_SYSV_ABI sceNpUtilGetNthChar(); -int PS4_SYSV_ABI sceNpUtilGetShareTitleCheck(); -int PS4_SYSV_ABI sceNpUtilGetSystemLanguage(); -int PS4_SYSV_ABI sceNpUtilGetTrcNotify(); -int PS4_SYSV_ABI sceNpUtilGetWebApi2FakeRateLimit(); -int PS4_SYSV_ABI sceNpUtilGetWebApi2FakeRateLimitTarget(); -int PS4_SYSV_ABI sceNpUtilGetWebTraceSetting(); -int PS4_SYSV_ABI sceNpUtilHttpUrlEncode(); -int PS4_SYSV_ABI sceNpUtilJidToNpId(); -int PS4_SYSV_ABI sceNpUtilJsonEscape(); -int PS4_SYSV_ABI sceNpUtilJsonGetOneChar(); -int PS4_SYSV_ABI sceNpUtilJsonUnescape(); -int PS4_SYSV_ABI sceNpUtilNpIdToJid(); -int PS4_SYSV_ABI sceNpUtilNumChars(); -int PS4_SYSV_ABI sceNpUtilParseJid(); -int PS4_SYSV_ABI sceNpUtilParseTitleId(); -int PS4_SYSV_ABI sceNpUtilSerializeJid(); -int PS4_SYSV_ABI sceNpUtilXmlEscape(); -int PS4_SYSV_ABI sceNpUtilXmlGetOneChar(); -int PS4_SYSV_ABI sceNpUtilXmlUnescape(); -int PS4_SYSV_ABI sceNpWaitEventFlag(); -int PS4_SYSV_ABI sceNpWaitSema(); -int PS4_SYSV_ABI sceNpXmlParse(); -int PS4_SYSV_ABI sceNpXmlParseInit(); -int PS4_SYSV_ABI Func_00FD578C2DD966DF(); -int PS4_SYSV_ABI Func_0131A2EA80689F4C(); -int PS4_SYSV_ABI Func_01443C54863BDD20(); -int PS4_SYSV_ABI Func_01BC55BDC5C0ADAD(); -int PS4_SYSV_ABI Func_01D1ECF5750F40E8(); -int PS4_SYSV_ABI Func_020A479A74F5FBAC(); -int PS4_SYSV_ABI Func_024AF5E1D9472AB5(); -int PS4_SYSV_ABI Func_027C5D488713A6B3(); -int PS4_SYSV_ABI Func_02FE9D94C6858355(); -int PS4_SYSV_ABI Func_041F34F1C70D15C1(); -int PS4_SYSV_ABI Func_0530B1D276114248(); -int PS4_SYSV_ABI Func_065DAA14E9C73AD9(); -int PS4_SYSV_ABI Func_06AFF4E5D042BC3E(); -int PS4_SYSV_ABI Func_06EE369299F73997(); -int PS4_SYSV_ABI Func_07C92D9F8D76B617(); -int PS4_SYSV_ABI Func_07E9117498F1E4BF(); -int PS4_SYSV_ABI Func_08F3E0AF3664F275(); -int PS4_SYSV_ABI Func_0A9937C01EF21375(); -int PS4_SYSV_ABI Func_0ACBE6ACCBA3876D(); -int PS4_SYSV_ABI Func_0AE07D3354510CE6(); -int PS4_SYSV_ABI Func_0AEC3C342AE67B7C(); -int PS4_SYSV_ABI Func_0B318420C11E7C23(); -int PS4_SYSV_ABI Func_0BB6C37B03F35D89(); -int PS4_SYSV_ABI Func_0BBE8A9ACDD90FDF(); -int PS4_SYSV_ABI Func_0C7B62905E224E9C(); -int PS4_SYSV_ABI Func_0D35913117241AF9(); -int PS4_SYSV_ABI Func_0D5EE95CEED879A7(); -int PS4_SYSV_ABI Func_0D6FB24B27AB1DA2(); -int PS4_SYSV_ABI Func_0DE8032D534AC41C(); -int PS4_SYSV_ABI Func_0DF4CCA9DCA9E742(); -int PS4_SYSV_ABI Func_0E7449B1D3D98C01(); -int PS4_SYSV_ABI Func_0E77094B7750CB37(); -int PS4_SYSV_ABI Func_0ECAB397B6D50603(); -int PS4_SYSV_ABI Func_0F1DE1D1EADA2948(); -int PS4_SYSV_ABI Func_0F8AFEFA1D26BF1A(); -int PS4_SYSV_ABI Func_11881710562A6BAD(); -int PS4_SYSV_ABI Func_11AFD88BBD0C70DB(); -int PS4_SYSV_ABI Func_11E704A30A4B8877(); -int PS4_SYSV_ABI Func_125014842452F94B(); -int PS4_SYSV_ABI Func_126F0071E11CAC46(); -int PS4_SYSV_ABI Func_12926DCF35994B01(); -int PS4_SYSV_ABI Func_12CC7ABFBF31618F(); -int PS4_SYSV_ABI Func_13C4E51F44592AA2(); -int PS4_SYSV_ABI Func_15330E7C56338254(); -int PS4_SYSV_ABI Func_1566B358CABF2612(); -int PS4_SYSV_ABI Func_1625818F268F45EF(); -int PS4_SYSV_ABI Func_16D32B40D28A9AC2(); -int PS4_SYSV_ABI Func_183F4483BDBD25CD(); -int PS4_SYSV_ABI Func_1887E9E95AF62F3D(); -int PS4_SYSV_ABI Func_18A3CE95FD893D3A(); -int PS4_SYSV_ABI Func_18B3665E4854E7E9(); -int PS4_SYSV_ABI Func_1923B003948AF47E(); -int PS4_SYSV_ABI Func_19B533DA4C59A532(); -int PS4_SYSV_ABI Func_1BB399772DB68E08(); -int PS4_SYSV_ABI Func_1C0AC612D3A2971B(); -int PS4_SYSV_ABI Func_1C5599B779990A43(); -int PS4_SYSV_ABI Func_1CCBB296B04317BE(); -int PS4_SYSV_ABI Func_1CD045542FB93002(); -int PS4_SYSV_ABI Func_1DECECA673AB77B7(); -int PS4_SYSV_ABI Func_1E03E024E26C1A7F(); -int PS4_SYSV_ABI Func_1F101732BB0D7E21(); -int PS4_SYSV_ABI Func_1F4D153EC3DD47BB(); -int PS4_SYSV_ABI Func_1F7C47F63FAF0CBE(); -int PS4_SYSV_ABI Func_1FBE2EE68C0F31B6(); -int PS4_SYSV_ABI Func_2038C1628914B9C9(); -int PS4_SYSV_ABI Func_203FCB56FDB86A74(); -int PS4_SYSV_ABI Func_20569C107C6CB08C(); -int PS4_SYSV_ABI Func_20AB2D734EDE55F0(); -int PS4_SYSV_ABI Func_22B1281180FB0A5E(); -int PS4_SYSV_ABI Func_22F1AADA66A449AE(); -int PS4_SYSV_ABI Func_238B215EFFDF3D30(); -int PS4_SYSV_ABI Func_24E8EC51D149FA15(); -int PS4_SYSV_ABI Func_25728E78A3962C02(); -int PS4_SYSV_ABI Func_25E649A1C6891C05(); -int PS4_SYSV_ABI Func_264B8A38B577705D(); -int PS4_SYSV_ABI Func_266ED08DC1C82A0E(); -int PS4_SYSV_ABI Func_27BB4DE62AB58BAD(); -int PS4_SYSV_ABI Func_283AA96A196EA2EA(); -int PS4_SYSV_ABI Func_285315A390A85A94(); -int PS4_SYSV_ABI Func_29049DBB1EF3194E(); -int PS4_SYSV_ABI Func_29F7BA9C3732CB47(); -int PS4_SYSV_ABI Func_2A732DF331ACCB37(); -int PS4_SYSV_ABI Func_2AA01660EC75B6FB(); -int PS4_SYSV_ABI Func_2B37CBCE941C1681(); -int PS4_SYSV_ABI Func_2CAA3B64D0544E55(); -int PS4_SYSV_ABI Func_2CCD79617EC10A75(); -int PS4_SYSV_ABI Func_2CD8B69716AC0667(); -int PS4_SYSV_ABI Func_2D74F7C0FF9B5E9C(); -int PS4_SYSV_ABI Func_2DCA5A8080544E95(); -int PS4_SYSV_ABI Func_2E69F2743CE7CE57(); -int PS4_SYSV_ABI Func_2EAF1F3BAFF0527D(); -int PS4_SYSV_ABI Func_31493E55BB4E8F66(); -int PS4_SYSV_ABI Func_317EDCAD00FB5F5E(); -int PS4_SYSV_ABI Func_31E01CFA8A18CDA2(); -int PS4_SYSV_ABI Func_32AFD782A061B526(); -int PS4_SYSV_ABI Func_32B5CDEB093B8189(); -int PS4_SYSV_ABI Func_34155152513C93AE(); -int PS4_SYSV_ABI Func_34E4EFFF8EF6C9FE(); -int PS4_SYSV_ABI Func_3572FA0D5C54563B(); -int PS4_SYSV_ABI Func_367C479B264E0DB9(); -int PS4_SYSV_ABI Func_36884FBC964B29CC(); -int PS4_SYSV_ABI Func_3860081BB7559949(); -int PS4_SYSV_ABI Func_39314F7E674AB132(); -int PS4_SYSV_ABI Func_3A02E780FCC556A5(); -int PS4_SYSV_ABI Func_3A17B885BA4849B6(); -int PS4_SYSV_ABI Func_3A38EACAEA5E23A4(); -int PS4_SYSV_ABI Func_3B34A5E07F0DBC1F(); -int PS4_SYSV_ABI Func_3B4E8FFC00FC7EA4(); -int PS4_SYSV_ABI Func_3BAB18FDA235107A(); -int PS4_SYSV_ABI Func_3BDF9996A0A33F11(); -int PS4_SYSV_ABI Func_3C1952F1A45CC37A(); -int PS4_SYSV_ABI Func_3CA37906CDB05F3B(); -int PS4_SYSV_ABI Func_3CDB2908ACEE3A6F(); -int PS4_SYSV_ABI Func_3D3ED165F2BDCD33(); -int PS4_SYSV_ABI Func_3DA4D7D1575FCDCE(); -int PS4_SYSV_ABI Func_3DDFB612CD0BC769(); -int PS4_SYSV_ABI Func_3E0415E167DEADC7(); -int PS4_SYSV_ABI Func_3E7E9F0F1581C1E6(); -int PS4_SYSV_ABI Func_3ED389DB8280ED65(); -int PS4_SYSV_ABI Func_3F0C7F6C0C35487D(); -int PS4_SYSV_ABI Func_3FDA7200389EF0D2(); -int PS4_SYSV_ABI Func_3FF3C258BA516E58(); -int PS4_SYSV_ABI Func_4029453F628A3C5D(); -int PS4_SYSV_ABI Func_405826DDB4AE538E(); -int PS4_SYSV_ABI Func_405A926759F25865(); -int PS4_SYSV_ABI Func_406608FDEE7AE88A(); -int PS4_SYSV_ABI Func_40DDA5558C17DDCF(); -int PS4_SYSV_ABI Func_419D12E52FF60664(); -int PS4_SYSV_ABI Func_4296E539474BE77F(); -int PS4_SYSV_ABI Func_42F41FC563CC3654(); -int PS4_SYSV_ABI Func_43CCC86F4C93026A(); -int PS4_SYSV_ABI Func_4409F60BDABC65E1(); -int PS4_SYSV_ABI Func_4563C70AEC675382(); -int PS4_SYSV_ABI Func_45E66370219BD05E(); -int PS4_SYSV_ABI Func_466A54F072785696(); -int PS4_SYSV_ABI Func_46CD2536976F209A(); -int PS4_SYSV_ABI Func_4863717BD2FDD157(); -int PS4_SYSV_ABI Func_4902EBD19A263149(); -int PS4_SYSV_ABI Func_4904F7FE8D83F40C(); -int PS4_SYSV_ABI Func_4A5E13F784ABFCE7(); -int PS4_SYSV_ABI Func_4B65EEB135C12781(); -int PS4_SYSV_ABI Func_4C19D49978DA85E2(); -int PS4_SYSV_ABI Func_4DE5D620FF66F136(); -int PS4_SYSV_ABI Func_4E170C12B57A8F9E(); -int PS4_SYSV_ABI Func_4E2F3FA405C3260C(); -int PS4_SYSV_ABI Func_4EA9350577513B4D(); -int PS4_SYSV_ABI Func_4F78EB6FC4B5F21F(); -int PS4_SYSV_ABI Func_50348BE4331117B7(); -int PS4_SYSV_ABI Func_508C7E8CDD281CAA(); -int PS4_SYSV_ABI Func_521C1D2C028F5A7E(); -int PS4_SYSV_ABI Func_522FF24A35E67291(); -int PS4_SYSV_ABI Func_5470FE90C25CDD4C(); -int PS4_SYSV_ABI Func_557F260F9A4ACD18(); -int PS4_SYSV_ABI Func_5586F97209F391EB(); -int PS4_SYSV_ABI Func_55B2C9B7ADA95C3C(); -int PS4_SYSV_ABI Func_55B488A3A540B936(); -int PS4_SYSV_ABI Func_5642DFE82AF43143(); -int PS4_SYSV_ABI Func_574E046F294AE187(); -int PS4_SYSV_ABI Func_578926EBF8AA6CBF(); -int PS4_SYSV_ABI Func_585DA5FC650896BC(); -int PS4_SYSV_ABI Func_58D6EB27349EC276(); -int PS4_SYSV_ABI Func_5906B7317949872D(); -int PS4_SYSV_ABI Func_5910B5614335BE70(); -int PS4_SYSV_ABI Func_593D7DA8911F08C9(); -int PS4_SYSV_ABI Func_59757FE6A93B0D53(); -int PS4_SYSV_ABI Func_598E60F862B1141E(); -int PS4_SYSV_ABI Func_5A45351666680DAF(); -int PS4_SYSV_ABI Func_5AABE9EA702E6A7F(); -int PS4_SYSV_ABI Func_5AEA4AE472355B80(); -int PS4_SYSV_ABI Func_5B20E53CDE598741(); -int PS4_SYSV_ABI Func_5B480B59FAE947E0(); -int PS4_SYSV_ABI Func_5B5EEC23690AB9BD(); -int PS4_SYSV_ABI Func_5C0AC5B0AF3EDAE0(); -int PS4_SYSV_ABI Func_5D2E999BEA0762D4(); -int PS4_SYSV_ABI Func_5D55BBFD45110E16(); -int PS4_SYSV_ABI Func_5DEE15403D2BB5FD(); -int PS4_SYSV_ABI Func_6020C708CA74B130(); -int PS4_SYSV_ABI Func_606E1415503C34D2(); -int PS4_SYSV_ABI Func_612140E8EE9A693E(); -int PS4_SYSV_ABI Func_61F13F551DAF61DF(); -int PS4_SYSV_ABI Func_6206D39131752328(); -int PS4_SYSV_ABI Func_621D4543EF0344DE(); -int PS4_SYSV_ABI Func_6259A9A8E56D0273(); -int PS4_SYSV_ABI Func_625F9C7016346F4E(); -int PS4_SYSV_ABI Func_62EF8DF746CD8C4A(); -int PS4_SYSV_ABI Func_636D2A99FD1E6B2B(); -int PS4_SYSV_ABI Func_68013EDF66FE7425(); -int PS4_SYSV_ABI Func_6971F7067DD639D1(); -int PS4_SYSV_ABI Func_69896ADB3AB410B2(); -int PS4_SYSV_ABI Func_6A1389AA6E561387(); -int PS4_SYSV_ABI Func_6A5560D89F12B2E7(); -int PS4_SYSV_ABI Func_6ABF99CF854ABCF1(); -int PS4_SYSV_ABI Func_6B4FDDC6500D8DCB(); -int PS4_SYSV_ABI Func_6CA11D5B49D1928A(); -int PS4_SYSV_ABI Func_6D6C0FB61E6D0715(); -int PS4_SYSV_ABI Func_6D750745FE1348F5(); -int PS4_SYSV_ABI Func_6E1AF3F9D09914BE(); -int PS4_SYSV_ABI Func_6E53ED4C08B2A521(); -int PS4_SYSV_ABI Func_6EF43ACA1ED6B968(); -int PS4_SYSV_ABI Func_6F6FA09F3E1B6A60(); -int PS4_SYSV_ABI Func_7035C340C7195901(); -int PS4_SYSV_ABI Func_7038E21CB5CF641B(); -int PS4_SYSV_ABI Func_706345DCDA5BA44D(); -int PS4_SYSV_ABI Func_7120714EBF10BF1F(); -int PS4_SYSV_ABI Func_713D28A91BC803DD(); -int PS4_SYSV_ABI Func_7153BD76A53AA012(); -int PS4_SYSV_ABI Func_715C625CC7041B6B(); -int PS4_SYSV_ABI Func_71E467BDB18711D0(); -int PS4_SYSV_ABI Func_720D17965C1F4E3F(); -int PS4_SYSV_ABI Func_734380C9BCF65B9A(); -int PS4_SYSV_ABI Func_73F4C08CCD4BBCCF(); -int PS4_SYSV_ABI Func_74403101B7B29D46(); -int PS4_SYSV_ABI Func_7525B081ACD66FF4(); -int PS4_SYSV_ABI Func_75BF4477C13A05CA(); -int PS4_SYSV_ABI Func_7609793F5987C6F7(); -int PS4_SYSV_ABI Func_7616ED01B04769AA(); -int PS4_SYSV_ABI Func_764F873D91A124D8(); -int PS4_SYSV_ABI Func_7706F1E123059565(); -int PS4_SYSV_ABI Func_77F2D07EB6D806E6(); -int PS4_SYSV_ABI Func_79C3704CDCD59E57(); -int PS4_SYSV_ABI Func_79DA0BBA21351545(); -int PS4_SYSV_ABI Func_79FA2447B5F3F0C4(); -int PS4_SYSV_ABI Func_7A4D6F65FF6195A5(); -int PS4_SYSV_ABI Func_7B3195CD114DECE7(); -int PS4_SYSV_ABI Func_7B3238F2301AD36D(); -int PS4_SYSV_ABI Func_7C77FC70750A3266(); -int PS4_SYSV_ABI Func_7D23A9DC459D6D18(); -int PS4_SYSV_ABI Func_7D5988C748D0A05F(); -int PS4_SYSV_ABI Func_7D9597147A99F4F4(); -int PS4_SYSV_ABI Func_7E2953F407DD8346(); -int PS4_SYSV_ABI Func_7EE34E5099709B32(); -int PS4_SYSV_ABI Func_80470E5511D5CA00(); -int PS4_SYSV_ABI Func_807179701C08F069(); -int PS4_SYSV_ABI Func_8096E81FFAF24E46(); -int PS4_SYSV_ABI Func_80B764F4F1B87042(); -int PS4_SYSV_ABI Func_80BF691438AD008B(); -int PS4_SYSV_ABI Func_80CF6CFC96012442(); -int PS4_SYSV_ABI Func_80EA772F8C0519FD(); -int PS4_SYSV_ABI Func_81D0AFD0084D327A(); -int PS4_SYSV_ABI Func_821EB8A72176FD67(); -int PS4_SYSV_ABI Func_82D2FAB54127273F(); -int PS4_SYSV_ABI Func_836AE669C42A59E9(); -int PS4_SYSV_ABI Func_8559A25BFEC3518C(); -int PS4_SYSV_ABI Func_85C1F66C767A49D2(); -int PS4_SYSV_ABI Func_8689ED1383F87BA7(); -int PS4_SYSV_ABI Func_8796CD9E5355D3A6(); -int PS4_SYSV_ABI Func_87D37EB6DDC19D99(); -int PS4_SYSV_ABI Func_880AA48F70F84FDD(); -int PS4_SYSV_ABI Func_897B07562093665B(); -int PS4_SYSV_ABI Func_8ACAF55F16368087(); -int PS4_SYSV_ABI Func_8AE8A5589B30D4E0(); -int PS4_SYSV_ABI Func_8AE997909831B331(); -int PS4_SYSV_ABI Func_8B2D640BE0D0FB99(); -int PS4_SYSV_ABI Func_8B3D9AB4668DAECB(); -int PS4_SYSV_ABI Func_8B5EFAAAACE0B46C(); -int PS4_SYSV_ABI Func_8C27943F40A988DB(); -int PS4_SYSV_ABI Func_8C54096C75F5F2D0(); -int PS4_SYSV_ABI Func_8D7663A0A5168814(); -int PS4_SYSV_ABI Func_8E618F509994FAD7(); -int PS4_SYSV_ABI Func_8F19E6CC064E2B98(); -int PS4_SYSV_ABI Func_8F6A8AEAEE922FF5(); -int PS4_SYSV_ABI Func_9010E1AD8EBBFBCA(); -int PS4_SYSV_ABI Func_90A955A0E7001AE9(); -int PS4_SYSV_ABI Func_90F9D6067FEECC05(); -int PS4_SYSV_ABI Func_9348F3D19546A1DA(); -int PS4_SYSV_ABI Func_93D3C011DB19388A(); -int PS4_SYSV_ABI Func_956E7A4FD9F89103(); -int PS4_SYSV_ABI Func_95F699E042C3E40F(); -int PS4_SYSV_ABI Func_96877B39AA0E8735(); -int PS4_SYSV_ABI Func_96CE07C49ED234EA(); -int PS4_SYSV_ABI Func_976BB178235B5681(); -int PS4_SYSV_ABI Func_978C0B25E588C4D6(); -int PS4_SYSV_ABI Func_98BA2612BEF238D6(); -int PS4_SYSV_ABI Func_995BDD4931AF9137(); -int PS4_SYSV_ABI Func_9966E39A926B7250(); -int PS4_SYSV_ABI Func_99C2306F18963464(); -int PS4_SYSV_ABI Func_99C92C613B776BA7(); -int PS4_SYSV_ABI Func_9A4E4B938CC8AD39(); -int PS4_SYSV_ABI Func_9B23F7B4B7F72081(); -int PS4_SYSV_ABI Func_9C0EAEEAE705A8DB(); -int PS4_SYSV_ABI Func_9D47AC59545DE9E8(); -int PS4_SYSV_ABI Func_A13052D8B1B2ACFA(); -int PS4_SYSV_ABI Func_A1AA43E3A78F6F62(); -int PS4_SYSV_ABI Func_A1E48CDF54649DC9(); -int PS4_SYSV_ABI Func_A2E7DEE5B0AF5D14(); -int PS4_SYSV_ABI Func_A2F5C7FD9FF113F5(); -int PS4_SYSV_ABI Func_A36296E2269D46BC(); -int PS4_SYSV_ABI Func_A3EE2A7B9F0D88AF(); -int PS4_SYSV_ABI Func_A4471F9F7E0BFA82(); -int PS4_SYSV_ABI Func_A449BBA521EA34E1(); -int PS4_SYSV_ABI Func_A48E666C334E726C(); -int PS4_SYSV_ABI Func_A49B7449B4DDE69C(); -int PS4_SYSV_ABI Func_A5748451125C9EA4(); -int PS4_SYSV_ABI Func_A690A28D648CC176(); -int PS4_SYSV_ABI Func_A6A86DE1B1CBB1D9(); -int PS4_SYSV_ABI Func_A8F2BB7B815740A1(); -int PS4_SYSV_ABI Func_A93F64C06A6F7397(); -int PS4_SYSV_ABI Func_AB35925FC97D6AA3(); -int PS4_SYSV_ABI Func_AC014AA2C991FA29(); -int PS4_SYSV_ABI Func_AC06E10901404AEB(); -int PS4_SYSV_ABI Func_AC75C68813523505(); -int PS4_SYSV_ABI Func_AD441BC497082C3E(); -int PS4_SYSV_ABI Func_AD4F25F021D354C3(); -int PS4_SYSV_ABI Func_ADFA04A85541A4FE(); -int PS4_SYSV_ABI Func_AE9610A6B5217A23(); -int PS4_SYSV_ABI Func_AF201923826F0A58(); -int PS4_SYSV_ABI Func_AFC021B4389CA3FA(); -int PS4_SYSV_ABI Func_B015E999A3373D8F(); -int PS4_SYSV_ABI Func_B0384B86107FC652(); -int PS4_SYSV_ABI Func_B0C630653B316563(); -int PS4_SYSV_ABI Func_B100DCCD88D5C73D(); -int PS4_SYSV_ABI Func_B11A3FEA5E4D9EA4(); -int PS4_SYSV_ABI Func_B2E7F8DC199C0B93(); -int PS4_SYSV_ABI Func_B3AB61A296F6DDC8(); -int PS4_SYSV_ABI Func_B3F32F6AE619EC82(); -int PS4_SYSV_ABI Func_B4227AB213BF8CF5(); -int PS4_SYSV_ABI Func_B4652BF42B604360(); -int PS4_SYSV_ABI Func_B536C1F13BFE97CB(); -int PS4_SYSV_ABI Func_B645CC264184BC89(); -int PS4_SYSV_ABI Func_B67E17B1582C6FBD(); -int PS4_SYSV_ABI Func_B6D047C5D7695A4D(); -int PS4_SYSV_ABI Func_B75ED8E1EA62EFC7(); -int PS4_SYSV_ABI Func_B7A9A944DBD7E100(); -int PS4_SYSV_ABI Func_B7C4E75BE94F31F3(); -int PS4_SYSV_ABI Func_B888B1F92C464121(); -int PS4_SYSV_ABI Func_B8DEC22564AA057B(); -int PS4_SYSV_ABI Func_B9BADD1CBBBAE4F8(); -int PS4_SYSV_ABI Func_BAA9F7169C85E59F(); -int PS4_SYSV_ABI Func_BAEE5C38908D62DB(); -int PS4_SYSV_ABI Func_BCC855EB25183F84(); -int PS4_SYSV_ABI Func_BD01F637029C7364(); -int PS4_SYSV_ABI Func_BDD29F5AC7077E53(); -int PS4_SYSV_ABI Func_BED83DD33ECAD50D(); -int PS4_SYSV_ABI Func_BEE7D5D098ABF728(); -int PS4_SYSV_ABI Func_C0DB15CCF59AE62C(); -int PS4_SYSV_ABI Func_C1C229FEE0FD60FA(); -int PS4_SYSV_ABI Func_C228B9AD68298E98(); -int PS4_SYSV_ABI Func_C298525CEF6FB283(); -int PS4_SYSV_ABI Func_C350F09351F6D6B5(); -int PS4_SYSV_ABI Func_C3742E80FA580319(); -int PS4_SYSV_ABI Func_C3C9853D5D4D45D4(); -int PS4_SYSV_ABI Func_C3F5DAD4FB9FC340(); -int PS4_SYSV_ABI Func_C45FB0E4CCE9AED6(); -int PS4_SYSV_ABI Func_C4979CB948B7E3C7(); -int PS4_SYSV_ABI Func_C49B25BA16CF0B8C(); -int PS4_SYSV_ABI Func_C551345D9631201E(); -int PS4_SYSV_ABI Func_C57A294421368298(); -int PS4_SYSV_ABI Func_C5DC91CAD721D628(); -int PS4_SYSV_ABI Func_C6DECEE589135357(); -int PS4_SYSV_ABI Func_C81F8B20D67AC78D(); -int PS4_SYSV_ABI Func_C820FA56FAC87BEA(); -int PS4_SYSV_ABI Func_C878EA9114C5E490(); -int PS4_SYSV_ABI Func_C8A813EBFF477509(); -int PS4_SYSV_ABI Func_C966A663D5A35482(); -int PS4_SYSV_ABI Func_C97C4C67FD3674D3(); -int PS4_SYSV_ABI Func_C990550F15848B07(); -int PS4_SYSV_ABI Func_CA59737A8EC1BBBE(); -int PS4_SYSV_ABI Func_CAC5FDE8F80D7B65(); -int PS4_SYSV_ABI Func_CB135B30D0639B83(); -int PS4_SYSV_ABI Func_CB8A1AAA61F64C3A(); -int PS4_SYSV_ABI Func_CB9E674672580757(); -int PS4_SYSV_ABI Func_CC2B9D25EAEAAB1D(); -int PS4_SYSV_ABI Func_CD1B252BBEDF5B53(); -int PS4_SYSV_ABI Func_CF003BE90CBE1A27(); -int PS4_SYSV_ABI Func_CF008E34884AC1E2(); -int PS4_SYSV_ABI Func_D0B8F4B3A3687AB2(); -int PS4_SYSV_ABI Func_D0EE19B8E91F60F5(); -int PS4_SYSV_ABI Func_D12B9294BD0E0F56(); -int PS4_SYSV_ABI Func_D1CC8626D8FA328B(); -int PS4_SYSV_ABI Func_D2FA2BB9EB8B63AC(); -int PS4_SYSV_ABI Func_D32197880CF93CEB(); -int PS4_SYSV_ABI Func_D326F5C26CC81B8E(); -int PS4_SYSV_ABI Func_D4FA06B95A321B7A(); -int PS4_SYSV_ABI Func_D52A37A901E04B21(); -int PS4_SYSV_ABI Func_D5504DFC399AB400(); -int PS4_SYSV_ABI Func_D56105CB27F8F5DC(); -int PS4_SYSV_ABI Func_D568AB19235ECB19(); -int PS4_SYSV_ABI Func_D6DF7BF6639FE611(); -int PS4_SYSV_ABI Func_D8608A903119D746(); -int PS4_SYSV_ABI Func_D9E8FC707D59914D(); -int PS4_SYSV_ABI Func_D9F079E62DEE5B29(); -int PS4_SYSV_ABI Func_DA17CE4F29748536(); -int PS4_SYSV_ABI Func_DA40B9EFD7F61185(); -int PS4_SYSV_ABI Func_DA6B274FEBC2666A(); -int PS4_SYSV_ABI Func_DAD01535C87A51FC(); -int PS4_SYSV_ABI Func_DB4511D448510EC4(); -int PS4_SYSV_ABI Func_DB8EF1FFFC66269C(); -int PS4_SYSV_ABI Func_DBB508FA1B9DA8F7(); -int PS4_SYSV_ABI Func_DC59C9B870B729A2(); -int PS4_SYSV_ABI Func_DC669ED6CBF6751C(); -int PS4_SYSV_ABI Func_DCB8A2849A41C991(); -int PS4_SYSV_ABI Func_DD8F9916D7F03AF7(); -int PS4_SYSV_ABI Func_DDC33F2F4E480C2A(); -int PS4_SYSV_ABI Func_DE0B420BDE8B22D7(); -int PS4_SYSV_ABI Func_E0C0BC29898FE370(); -int PS4_SYSV_ABI Func_E0CD893E46FB55BA(); -int PS4_SYSV_ABI Func_E25530164B7F659F(); -int PS4_SYSV_ABI Func_E3682F43FDF76C58(); -int PS4_SYSV_ABI Func_E38177E1C78A80FA(); -int PS4_SYSV_ABI Func_E3CA74CFF965DF0A(); -int PS4_SYSV_ABI Func_E45BB191B49B2ED9(); -int PS4_SYSV_ABI Func_E465B9D6B60E6D7D(); -int PS4_SYSV_ABI Func_E4D82876C296C38A(); -int PS4_SYSV_ABI Func_E4DDB5350FA5B538(); -int PS4_SYSV_ABI Func_E54BFF6FB72BC7BE(); -int PS4_SYSV_ABI Func_E592A93203020BBB(); -int PS4_SYSV_ABI Func_E5A44AF6D7D48AFD(); -int PS4_SYSV_ABI Func_E639A97CF9FF1430(); -int PS4_SYSV_ABI Func_E6AC0179E48A8927(); -int PS4_SYSV_ABI Func_E751596682775D83(); -int PS4_SYSV_ABI Func_E788B1E52EF82702(); -int PS4_SYSV_ABI Func_E94F17613F5C9D31(); -int PS4_SYSV_ABI Func_E9590113128D55E0(); -int PS4_SYSV_ABI Func_E9E0B0DD12560B16(); -int PS4_SYSV_ABI Func_EAF5C8ECE64C7B05(); -int PS4_SYSV_ABI Func_EB98BF5C42D4A7EB(); -int PS4_SYSV_ABI Func_EBABC4AAC43A468C(); -int PS4_SYSV_ABI Func_EBF00085F082CC8B(); -int PS4_SYSV_ABI Func_ECB659EE058D06AF(); -int PS4_SYSV_ABI Func_ECF096AB751487AE(); -int PS4_SYSV_ABI Func_EE5A271701DB33C0(); -int PS4_SYSV_ABI Func_EF64CB6A1625248E(); -int PS4_SYSV_ABI Func_EF6C8A357C7ED863(); -int PS4_SYSV_ABI Func_F00FE94F7E699994(); -int PS4_SYSV_ABI Func_F1A51DBA30329038(); -int PS4_SYSV_ABI Func_F216E766A90FDC12(); -int PS4_SYSV_ABI Func_F2A10584ABE5D82C(); -int PS4_SYSV_ABI Func_F2D99D395E5421A3(); -int PS4_SYSV_ABI Func_F38001E528BA1371(); -int PS4_SYSV_ABI Func_F39EC9C8FA7687B3(); -int PS4_SYSV_ABI Func_F3AFFFDCD632775C(); -int PS4_SYSV_ABI Func_F3B8DFF33748BFD3(); -int PS4_SYSV_ABI Func_F5E47F9550F7A147(); -int PS4_SYSV_ABI Func_F6E93714D1A939CF(); -int PS4_SYSV_ABI Func_F6FD19AD48E4EF09(); -int PS4_SYSV_ABI Func_F744EBFC620F7CBF(); -int PS4_SYSV_ABI Func_F76E4525ACBACC7F(); -int PS4_SYSV_ABI Func_F7957A48882F42CB(); -int PS4_SYSV_ABI Func_F7A80B07809BA838(); -int PS4_SYSV_ABI Func_F8571C6CC5B6B59D(); -int PS4_SYSV_ABI Func_F9787CFA873836FB(); -int PS4_SYSV_ABI Func_FA789F6D34D383F8(); -int PS4_SYSV_ABI Func_FABA574083AC1E6C(); -int PS4_SYSV_ABI Func_FC04FDBBAE368FB7(); -int PS4_SYSV_ABI Func_FD2DAFBF2E40EEE7(); -int PS4_SYSV_ABI Func_FD55EE6D35F950AD(); -int PS4_SYSV_ABI Func_FE55EE32098D0D58(); -int PS4_SYSV_ABI Func_FE79841022E1DA1C(); -int PS4_SYSV_ABI Func_FFF4A3E279FB44A7(); - -void RegisterLib(Core::Loader::SymbolsResolver* sym); -} // namespace Libraries::NpCommon \ No newline at end of file diff --git a/src/core/libraries/np_manager/np_manager.cpp b/src/core/libraries/np_manager/np_manager.cpp deleted file mode 100644 index b161a5a50..000000000 --- a/src/core/libraries/np_manager/np_manager.cpp +++ /dev/null @@ -1,3562 +0,0 @@ -// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project -// SPDX-License-Identifier: GPL-2.0-or-later - -#include "common/config.h" -#include "common/logging/log.h" -#include "core/libraries/error_codes.h" -#include "core/libraries/libs.h" -#include "core/libraries/np_manager/np_manager.h" -#include "core/libraries/np_manager/np_manager_error.h" -#include "core/tls.h" - -namespace Libraries::NpManager { - -#define SIGNEDIN_STATUS (Config::getPSNSignedIn() ? ORBIS_OK : ORBIS_NP_ERROR_SIGNED_OUT) - -int PS4_SYSV_ABI Func_EF4378573542A508() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _sceNpIpcCreateMemoryFromKernel() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _sceNpIpcCreateMemoryFromPool() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _sceNpIpcDestroyMemory() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _sceNpIpcFreeImpl() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _sceNpIpcGetNpMemAllocator() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _sceNpIpcMallocImpl() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _sceNpIpcReallocImpl() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _sceNpManagerCreateMemoryFromKernel() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _sceNpManagerCreateMemoryFromPool() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _sceNpManagerDestroyMemory() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _sceNpManagerFreeImpl() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _sceNpManagerGetNpMemAllocator() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _sceNpManagerMallocImpl() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _sceNpManagerReallocImpl() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10NpOnlineId13GetNpOnlineIdERKNS0_4UserEP13SceNpOnlineId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10NpOnlineId13GetNpOnlineIdERKNS0_4UserEPS1_() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10NpOnlineId16SetNpOnlineIdStrEPKc() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10NpOnlineId5ClearEv() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10NpOnlineIdC1ERK13SceNpOnlineId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10NpOnlineIdC1ERKS1_() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10NpOnlineIdC1Ev() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10NpOnlineIdC2ERK13SceNpOnlineId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10NpOnlineIdC2ERKS1_() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10NpOnlineIdC2Ev() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10NpOnlineIdD0Ev() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10NpOnlineIdD1Ev() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np10NpOnlineIdD2Ev() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np11NpHttpTrans13GetResultCodeEPNS0_6HandleE() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np11NpHttpTrans21SetRequestAccessTokenEPNS0_6HandleE() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np11NpHttpTrans24BuildAuthorizationHeaderERKNS0_13NpAccessTokenEPcm() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np11NpHttpTransC2EP16SceNpAllocatorEx() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np11NpHttpTransD0Ev() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np11NpHttpTransD1Ev() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np11NpHttpTransD2Ev() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np12NpHttpClient4InitEii() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np12NpHttpClientC1EP16SceNpAllocatorEx() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np12NpHttpClientC2EP16SceNpAllocatorEx() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np12NpHttpClientD0Ev() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np12NpHttpClientD1Ev() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np12NpHttpClientD2Ev() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np12NpTitleToken5ClearEv() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np12NpTitleTokenC1ERKS1_() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np12NpTitleTokenC1Ev() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np12NpTitleTokenC2ERKS1_() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np12NpTitleTokenC2Ev() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np12NpTitleTokenD0Ev() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np12NpTitleTokenD1Ev() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np12NpTitleTokenD2Ev() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np13NpAccessToken14GetAccessTokenEPNS0_6HandleERKNS0_4UserEPS1_() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np13NpAccessToken5ClearEv() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np13NpAccessTokenC1ERK16SceNpAccessToken() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np13NpAccessTokenC1ERKS1_() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np13NpAccessTokenC1Ev() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np13NpAccessTokenC2ERK16SceNpAccessToken() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np13NpAccessTokenC2ERKS1_() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np13NpAccessTokenC2Ev() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np13NpAccessTokenD0Ev() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np13NpAccessTokenD1Ev() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np13NpAccessTokenD2Ev() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc14service_client10EndRequestEii() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc14service_client11InitServiceEi() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc14service_client11TermServiceEi() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc14service_client11WaitRequestEiij() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc14service_client12AbortRequestEii() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc14service_client12BeginRequestEii() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc14service_client13CreateRequestEimPKvPi() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc14service_client13DeleteRequestEii() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc14service_client13GetIpmiClientEv() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc14service_client13PollEventFlagEijmjPm() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np3ipc14service_client14PollEventQueueEiPvm() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4NpId5ClearEv() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4NpIdC1ERK7SceNpId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4NpIdC1ERKS1_() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4NpIdC1Ev() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4NpIdC2ERK7SceNpId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4NpIdC2ERKS1_() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4NpIdC2Ev() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4NpIdD0Ev() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4NpIdD1Ev() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4NpIdD2Ev() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4User5ClearEv() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4User7GetUserEiPS1_() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4UserC1Ei() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4UserC1ERKS1_() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4UserC1Ev() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4UserC2Ei() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4UserC2ERKS1_() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4UserC2Ev() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4UserD0Ev() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4UserD1Ev() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np4UserD2Ev() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8NpTicket5ClearEv() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8NpTicketD0Ev() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8NpTicketD1Ev() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2np8NpTicketD2Ev() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npeqERK13SceNpOnlineIdRKNS0_10NpOnlineIdE() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npeqERKNS0_10NpOnlineIdERK13SceNpOnlineId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npeqERKNS0_10NpOnlineIdES3_() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npeqERKNS0_4UserERKi() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npeqERKNS0_4UserES3_() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npneERK13SceNpOnlineIdRKNS0_10NpOnlineIdE() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npneERKNS0_10NpOnlineIdERK13SceNpOnlineId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npneERKNS0_10NpOnlineIdES3_() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npneERKNS0_4UserERKi() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZN3sce2npneERKNS0_4UserES3_() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np10NpOnlineId7IsEmptyEv() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np12NpTitleToken6GetStrEv() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np13NpAccessToken7IsEmptyEv() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np4User10IsLoggedInEv() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np4User12GetAccountIdEPm() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np4User12HasAccountIdEPb() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np4User25GetAccountIdFromRegistoryEPm() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np4User7IsEmptyEv() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np4User7IsGuestEv() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np4User9GetUserIdEv() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np8NpTicket13GetTicketDataEv() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZNK3sce2np8NpTicket13GetTicketSizeEv() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZThn16_N3sce2np11NpHttpTransD0Ev() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZThn16_N3sce2np11NpHttpTransD1Ev() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZThn8_N3sce2np11NpHttpTransD0Ev() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI _ZThn8_N3sce2np11NpHttpTransD1Ev() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAbortRequest() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmAbort() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmClientAbortRequest() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmClientClearNpTitleToken() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmClientClearNpTitleTokenA() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmClientCreateRequest2() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmClientCreateResourceContext() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmClientCreateResourceContext2() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmClientDeleteRequest() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmClientDeleteResourceContext() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmClientDeleteResourceContext2() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmClientGetAppId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmClientGetCacheControlMaxAge() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmClientGetGameNpTitleInfo() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmClientGetGameNpTitleToken() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmClientGetGameTitleBanInfo() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmClientGetNpComInfo2() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmClientGetNpComInfo2A() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmClientGetNpComInfo2WithHmac() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmClientGetNpComInfo3() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmClientGetNpComInfo4() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmClientGetNpTitleId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmClientGetNpTitleToken() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmClientGetNpTitleToken2() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmClientGetNpTitleTokenA() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmClientGetRelatedGameNpTitleIds() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmClientGetRelatedGameNpTitleIdsA() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmClientGetRelatedGameNpTitleIdsResult() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmClientGetServiceBaseUrl() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmClientGetServiceBaseUrlA() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmClientGetServiceBaseUrlWithNpTitleId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmClientGetServiceBaseUrlWithNpTitleIdA() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmClientGetServiceIdInfo() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmClientGetServiceIdInfoA() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmClientInitialize() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmClientSetNpTitleId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmClientTerminate() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmCreateConnection() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmCreateRequest() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmDeleteConnection() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmDeleteRequest() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmGenerateNpTitleToken() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmGenerateNpTitleToken2() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmGetNpCommInfo() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmGetNpCommInfo2() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmGetRelatedGameNpTitleIds() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmGetServiceBaseUrl() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmGetServiceIdInfo() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmInitialize() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpAsmTerminate() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpCheckCallback() { - LOG_TRACE(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpCheckNpAvailability() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpCheckNpAvailabilityA() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpCheckNpReachability() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpCheckPlus() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpCreateAsyncRequest() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpCreateRequest() { - LOG_ERROR(Lib_NpManager, "(DUMMY) called"); - static int id = 0; - return ++id; -} - -int PS4_SYSV_ABI sceNpDeleteRequest(int reqId) { - LOG_ERROR(Lib_NpManager, "(DUMMY) called reqId = {}", reqId); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpGetAccountAge() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpGetAccountCountry() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpGetAccountCountryA(OrbisUserServiceUserId user_id, - OrbisNpCountryCode* country_code) { - LOG_INFO(Lib_NpManager, "(STUBBED) called, user_id = {}", user_id); - if (country_code == nullptr) { - return ORBIS_NP_ERROR_INVALID_ARGUMENT; - } - ::memset(country_code, 0, sizeof(OrbisNpCountryCode)); - // TODO: get NP country code from config - ::memcpy(country_code->country_code, "us", 2); - return SIGNEDIN_STATUS; -} - -int PS4_SYSV_ABI sceNpGetAccountDateOfBirth() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpGetAccountDateOfBirthA() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpGetAccountId(OrbisNpOnlineId* online_id, u64* account_id) { - LOG_DEBUG(Lib_NpManager, "called"); - if (online_id == nullptr || account_id == nullptr) { - return ORBIS_NP_ERROR_INVALID_ARGUMENT; - } - *account_id = 0xFEEDFACE; - return SIGNEDIN_STATUS; -} - -int PS4_SYSV_ABI sceNpGetAccountIdA(OrbisUserServiceUserId user_id, u64* account_id) { - LOG_DEBUG(Lib_NpManager, "user_id {}", user_id); - if (account_id == nullptr) { - return ORBIS_NP_ERROR_INVALID_ARGUMENT; - } - *account_id = 0xFEEDFACE; - return SIGNEDIN_STATUS; -} - -int PS4_SYSV_ABI sceNpGetAccountLanguage() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpGetAccountLanguage2() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpGetAccountLanguageA() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpGetGamePresenceStatus() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpGetGamePresenceStatusA() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpGetNpId(OrbisUserServiceUserId user_id, OrbisNpId* np_id) { - LOG_DEBUG(Lib_NpManager, "user_id {}", user_id); - if (np_id == nullptr) { - return ORBIS_NP_ERROR_INVALID_ARGUMENT; - } - memset(np_id, 0, sizeof(OrbisNpId)); - strncpy(np_id->handle.data, Config::getUserName().c_str(), sizeof(np_id->handle.data)); - return SIGNEDIN_STATUS; -} - -int PS4_SYSV_ABI sceNpGetNpReachabilityState() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpGetOnlineId(OrbisUserServiceUserId user_id, OrbisNpOnlineId* online_id) { - LOG_DEBUG(Lib_NpManager, "user_id {}", user_id); - if (online_id == nullptr) { - return ORBIS_NP_ERROR_INVALID_ARGUMENT; - } - memset(online_id, 0, sizeof(OrbisNpOnlineId)); - strncpy(online_id->data, Config::getUserName().c_str(), sizeof(online_id->data)); - return SIGNEDIN_STATUS; -} - -int PS4_SYSV_ABI sceNpGetParentalControlInfo() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpGetParentalControlInfoA() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpGetState(OrbisUserServiceUserId user_id, OrbisNpState* state) { - if (state == nullptr) { - return ORBIS_NP_ERROR_INVALID_ARGUMENT; - } - *state = Config::getPSNSignedIn() ? OrbisNpState::SignedIn : OrbisNpState::SignedOut; - LOG_DEBUG(Lib_NpManager, "Signed {}", Config::getPSNSignedIn() ? "in" : "out"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpGetUserIdByAccountId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpGetUserIdByOnlineId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpHasSignedUp(OrbisUserServiceUserId user_id, bool* has_signed_up) { - LOG_DEBUG(Lib_NpManager, "called"); - if (has_signed_up == nullptr) { - return ORBIS_NP_ERROR_INVALID_ARGUMENT; - } - *has_signed_up = false; - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpIdMapperAbortRequest() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpIdMapperAccountIdToNpId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpIdMapperAccountIdToOnlineId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpIdMapperCreateRequest() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpIdMapperDeleteRequest() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpIdMapperNpIdToAccountId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpIdMapperOnlineIdToAccountId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpInGameMessageAbortHandle() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpInGameMessageCheckCallback() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpInGameMessageCreateHandle() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpInGameMessageDeleteHandle() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpInGameMessageGetMemoryPoolStatistics() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpInGameMessageInitialize() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpInGameMessagePrepare() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpInGameMessagePrepareA() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpInGameMessageSendData() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpInGameMessageSendDataA() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpInGameMessageTerminate() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpIntCheckPlus() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpIntGetAppType() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpIntGetGamePresenceStatus() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpIntGetNpTitleId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpIntGetNpTitleIdSecret() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpIntRegisterGamePresenceCallback() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpIsPlusMember() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntAbortRequest() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntAddActiveSigninStateCallback() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntAddOnlineIdChangeCallback() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntAddPlusMemberTypeCallback() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntAddSigninStateCallback() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntAuthGetAuthorizationCode() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntAuthGetIdToken() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntBindOfflineAccountId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntCheckGameNpAvailability() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntCheckNpAvailability() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntCheckNpAvailabilityByPid() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntCheckNpState() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntCheckNpStateA() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntClearGameAccessToken() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntClearOnlineIdChangeFlag() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntClearTicket() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntClearUsedFlag() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntClearVshAccessToken() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntCreateLoginContext() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntCreateLoginRequest() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntCreateRequest() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntDeleteLoginContext() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntDeleteRequest() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetAccountCountry() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetAccountCountryA() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetAccountCountrySdk() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetAccountDateOfBirthA() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetAccountDateOfBirthSdk() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetAccountId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetAccountIdSdk() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetAccountLanguage() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetAccountLanguageA() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetAccountNpEnv() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetAccountType() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetActiveSigninState() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetAuthorizationCodeA() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetAuthorizationCodeWithPsnoUri() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetAuthServerErrorFlag() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetClientCredentialAccessToken() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetCommunicationRestrictionStatus() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetGameAccessToken() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetIssuerId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetLastAccountLanguage() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetMAccountId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetNpEnv() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetNpId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetNpIdByOnlineId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetNpIdSdk() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetOfflineAccountId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetOnlineIdByAccountId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetOnlineIdChangeFlag() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetOnlineIdInternal() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetOnlineIdSdk() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetParentalControlFlag() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetParentalControlInfo() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetParentalControlInfoA() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetPlusMemberType() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetPlusMemberTypeNB() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetServerError() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetSigninState() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetTicket() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetTicketA() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetTitleTokenWithCheck() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetUserIdByAccountId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetUserIdByMAccountId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetUserIdByNpId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetUserIdByOfflineAccountId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetUserIdByOnlineId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetUserIdByOnlineIdSdk() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetUserList() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetUserNum() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetVshAccessToken() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetVshAccessTokenWithCheck() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntGetVshClientId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntIsSubAccount() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntIsTemporarySignout() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntIsUnregisteredClientError() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntLoginAddJsonInfo() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntLoginAuthenticate() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntLoginBind() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntLoginGet2svInfo() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntLoginGetAccessToken() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntLoginGetAccessTokenViaImplicitFlow() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntLoginGetAccountId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntLoginGetAuthenticateResponse() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntLoginGetAuthorizationCode() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntLoginGetDeviceCodeInfo() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntLoginGetEmail() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntLoginGetOnlineId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntLoginGetUserId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntLoginParseJsonUserInfo() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntLoginResetSsoToken() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntLoginRevalidatePassword() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntLoginSetAccountInfo() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntLoginSetSsoToken() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntLoginSignin() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntLoginValidateCredential() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntLoginValidateKratosAuthCode() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntLoginVerifyDeviceCode() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntPfAuth() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntRemoveActiveSigninStateCallback() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntRemoveOnlineIdChangeCallback() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntRemovePlusMemberTypeCallback() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntRemoveSigninStateCallback() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntRevalidatePassword() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntSetPlusMemberTypeNB() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntSetTimeout() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntSignout() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntSubmitUserCode() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntTemporarySignout() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntUnbindOfflineAccountId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntUpdateVshAccessToken() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerIntWebLoginRequired() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerPrxStartVsh() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpManagerPrxStopVsh() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpNotifyPlusFeature() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPollAsync() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPush2CreateUserContext() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPush2DeleteUserContext() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPush2Init() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPush2IsInit() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPush2OptionalCheckCallback() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPush2RegisterDataType() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPush2RegisterExtendedDataFilter() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPush2RegisterNotificationExCallback() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPush2SendPushStatisticsDataSystemTelemetry() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPush2SetGlobalMutex() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPush2SetNpCommunicationId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPush2Term() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPush2TriggerEmptyUserEvent() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPush2UnregisterDataType() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPush2UnregisterExtendedDataFilter() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPush2UnregisterNotificationExCallback() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPush2UnsetNpCommunicationId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPush2WaitCallback() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPushCheckCallback() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPushInit() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPushIntBeginInactive() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPushIntEndInactive() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPushIntGetBindUserState() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPushIntGetConnectionState() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPushIntRegisterNotificationPacketCallback() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPushIntUnregisterNotificationPacketCallback() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPushRegisterExtendedDataFilter() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPushRegisterNotificationExCallback() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPushSetNpCommunicationId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPushStartNotification() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPushStartNotificationA() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPushStopNotification() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPushStopNotificationA() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPushTerm() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPushUnregisterExtendedDataFilter() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPushUnregisterNotificationCallback() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpPushUnsetNpCommunicationId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpRegisterGamePresenceCallback() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpRegisterGamePresenceCallbackA() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpRegisterNpReachabilityStateCallback() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpRegisterPlusEventCallback() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpRegisterStateCallback() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpRegisterStateCallbackA() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpServiceClientInit() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpServiceClientTerm() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpSetAdditionalScope() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpSetContentRestriction() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpSetGamePresenceOnline() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpSetGamePresenceOnlineA() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpSetNpTitleId() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpSetNpTitleIdVsh() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpSetTimeout() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUnregisterGamePresenceCallbackA() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUnregisterNpReachabilityStateCallback() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUnregisterPlusEventCallback() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUnregisterStateCallback() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpUnregisterStateCallbackA() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpWaitAsync() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_05003628D66BD87D() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_0C388A4F21C98AF9() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_0CECC7A08A3E50AF() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_0D17030A1DA18EEB() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_0F0F320B6AD8A53D() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_113C477090F9A174() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_12D367D5C727F008() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_1640120BD475931E() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_1AFE1C07C95E65A5() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_1D983C7E0C28AC72() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_208943695A3B58FE() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_258A3D10C99A43BB() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_263E325794B412AC() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_2B6A4BF35C5E240D() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_2B707FFE05ACB009() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_2CE5AB230EBAF8B4() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_3237EE3C3AFC187B() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_33D4DFB2A1603BFF() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_3821D79C1ED86F33() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_3F431997C7105BBF() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_4192797C2D2D3FC3() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_41C7E3D88BBB7F75() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_438F60858A883FCF() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_4C4A062E5660FABD() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_4C808F7A4EFA36A7() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_4E1CED7E62F68F46() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_5161A48C6A61C4BF() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_542603999CA0AEE9() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_54690B41C1128799() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_55A76C7C29521FAD() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_562B234AAE25F80C() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_58D1975026DD864A() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_5A60395F8C3FE128() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_5B382777E9B5F294() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_5DB301F9CD649671() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_6441D55869D8D6F2() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_69068E18854284DE() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_6F59C3B00B03E05A() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_724CCE7F78A1356B() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_750F1B053C243308() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_760F079BB91DE258() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_78657523221556EF() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_8089888BD363EDA6() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_810CA029B6F7C3A1() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_8253B94686A8D3FD() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_8665138A709E1654() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_882F48FAE6097C0C() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_89DBE4B3303FF888() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_8BD3E57620BDDC38() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_8F0A74013AD633EC() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_8FA6264BF3F6CC00() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_9292E87C2C0971E4() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_92CA292318CA03A8() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_9348596C2B17F662() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_9507E9B321A5E0D7() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_98CA95E231980731() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_9E66CC4BBF2C1990() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_9E6CEF7064891F84() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_A7BC2C792E9522C5() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_ABBA0F809548CB02() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_B14A27A4CEDE020F() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_B323EE1C23AB97F3() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_B429819DAEF40BAC() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_B54B9571BEAD82C5() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_B5ACB5CF4A4114A6() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_BA41BE0F44157EE4() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_BAA1DEC848D99690() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_BB8CCCD6C9480EB2() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_BEC25DAAE8B8B81F() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_BFEE936391AB0C70() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_C0DD2DBE2EA66F7A() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_C1F858BF5B86C2A1() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_C240618E6FC39206() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_C338A34450310E79() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_C91EE3603D966909() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_CB67035ED668CF6B() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_D5A5A28B7351A9BE() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_DA8426059F1D5A2D() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_DA8E15DD00AF9DF8() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_DB86987643BB5DD7() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_DEC53D7165C137DF() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_DFDEEE26F2EB96B3() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_E2056A6F01642866() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_E240E9B8597EE56E() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_E32CE33B706F05F7() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_E4F67EFC91C84F87() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_E6F041A2660F83EB() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_E979BA413BD84D38() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_EDDDF2D305DB7866() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_F08EC7725B42E2F9() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_F3595D8EFFF26EC0() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_F3DF5271142F155D() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_F89997168DC987A8() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_F91B5B25CC9B30D9() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_FC335B7102A585B3() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_FCEAC354CA8B206E() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI Func_FF966E4351E564D6() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -struct NpStateCallbackForNpToolkit { - OrbisNpStateCallbackForNpToolkit func; - void* userdata; -}; - -NpStateCallbackForNpToolkit NpStateCbForNp; - -int PS4_SYSV_ABI sceNpCheckCallbackForLib() { - LOG_DEBUG(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -int PS4_SYSV_ABI sceNpRegisterStateCallbackForToolkit(OrbisNpStateCallbackForNpToolkit callback, - void* userdata) { - static int id = 0; - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - NpStateCbForNp.func = callback; - NpStateCbForNp.userdata = userdata; - return id; -} - -int PS4_SYSV_ABI sceNpUnregisterStateCallbackForToolkit() { - LOG_ERROR(Lib_NpManager, "(STUBBED) called"); - return ORBIS_OK; -} - -void RegisterLib(Core::Loader::SymbolsResolver* sym) { - LIB_FUNCTION("70N4VzVCpQg", "libSceNpManagerForSys", 1, "libSceNpManager", 1, 1, - Func_EF4378573542A508); - LIB_FUNCTION("pHLjntY0psg", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _sceNpIpcCreateMemoryFromKernel); - LIB_FUNCTION("UdhQmx64-uM", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _sceNpIpcCreateMemoryFromPool); - LIB_FUNCTION("hyuye+88uPo", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _sceNpIpcDestroyMemory); - LIB_FUNCTION("VY8Xji9cAFA", "libSceNpManager", 1, "libSceNpManager", 1, 1, _sceNpIpcFreeImpl); - LIB_FUNCTION("V38nfJwXYhg", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _sceNpIpcGetNpMemAllocator); - LIB_FUNCTION("VBZtcFn7+aY", "libSceNpManager", 1, "libSceNpManager", 1, 1, _sceNpIpcMallocImpl); - LIB_FUNCTION("TyACAxDH3Uw", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _sceNpIpcReallocImpl); - LIB_FUNCTION("fHGhS3uP52k", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _sceNpManagerCreateMemoryFromKernel); - LIB_FUNCTION("v8+25H9WIX4", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _sceNpManagerCreateMemoryFromPool); - LIB_FUNCTION("4uhgVNAqiag", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _sceNpManagerDestroyMemory); - LIB_FUNCTION("8JX-S2ADen4", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _sceNpManagerFreeImpl); - LIB_FUNCTION("ukEeOizCkIU", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _sceNpManagerGetNpMemAllocator); - LIB_FUNCTION("p0TfCdPEcsk", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _sceNpManagerMallocImpl); - LIB_FUNCTION("PIYEFT1iG0Y", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _sceNpManagerReallocImpl); - LIB_FUNCTION("o1azI8TGjbc", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np10NpOnlineId13GetNpOnlineIdERKNS0_4UserEP13SceNpOnlineId); - LIB_FUNCTION("1GRQfw+bhcE", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np10NpOnlineId13GetNpOnlineIdERKNS0_4UserEPS1_); - LIB_FUNCTION("Icc9+aRUQfQ", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np10NpOnlineId16SetNpOnlineIdStrEPKc); - LIB_FUNCTION("-QlrD62pWME", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np10NpOnlineId5ClearEv); - LIB_FUNCTION("oGASj6Qjq7M", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np10NpOnlineIdC1ERK13SceNpOnlineId); - LIB_FUNCTION("dgSWiLGbjuY", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np10NpOnlineIdC1ERKS1_); - LIB_FUNCTION("YYfLHMi0+2M", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np10NpOnlineIdC1Ev); - LIB_FUNCTION("mt2Be6qsnsw", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np10NpOnlineIdC2ERK13SceNpOnlineId); - LIB_FUNCTION("gPux+0B5N9I", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np10NpOnlineIdC2ERKS1_); - LIB_FUNCTION("gBeifc27nO4", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np10NpOnlineIdC2Ev); - LIB_FUNCTION("kUsK6ZtqofM", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np10NpOnlineIdD0Ev); - LIB_FUNCTION("UyUHeYA21sg", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np10NpOnlineIdD1Ev); - LIB_FUNCTION("YcMKsqoMBtg", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np10NpOnlineIdD2Ev); - LIB_FUNCTION("7I2lZS0DRjA", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np11NpHttpTrans13GetResultCodeEPNS0_6HandleE); - LIB_FUNCTION("WoaqjY1ccEo", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np11NpHttpTrans21SetRequestAccessTokenEPNS0_6HandleE); - LIB_FUNCTION("mCqfLfIWWuo", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np11NpHttpTrans24BuildAuthorizationHeaderERKNS0_13NpAccessTokenEPcm); - LIB_FUNCTION("JDYbbgccPDE", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np11NpHttpTransC2EP16SceNpAllocatorEx); - LIB_FUNCTION("Yd7V7lM4bSA", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np11NpHttpTransD0Ev); - LIB_FUNCTION("7OiI1ObT1QU", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np11NpHttpTransD1Ev); - LIB_FUNCTION("D5qJmwMlccI", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np11NpHttpTransD2Ev); - LIB_FUNCTION("CvGog64+vCk", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np12NpHttpClient4InitEii); - LIB_FUNCTION("QvqOkNK5ThU", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np12NpHttpClientC1EP16SceNpAllocatorEx); - LIB_FUNCTION("t+T8UG8jats", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np12NpHttpClientC2EP16SceNpAllocatorEx); - LIB_FUNCTION("FjbLZy95ts4", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np12NpHttpClientD0Ev); - LIB_FUNCTION("kR3ed2pAvV8", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np12NpHttpClientD1Ev); - LIB_FUNCTION("9Uew6b9Pp8U", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np12NpHttpClientD2Ev); - LIB_FUNCTION("zAvqfrR2f7c", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np12NpTitleToken5ClearEv); - LIB_FUNCTION("xQM94RIreRc", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np12NpTitleTokenC1ERKS1_); - LIB_FUNCTION("j6oWzyuDal4", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np12NpTitleTokenC1Ev); - LIB_FUNCTION("oDMQ96CSgKE", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np12NpTitleTokenC2ERKS1_); - LIB_FUNCTION("+3JWTVP4NUc", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np12NpTitleTokenC2Ev); - LIB_FUNCTION("SyxdUakD7HU", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np12NpTitleTokenD0Ev); - LIB_FUNCTION("+fA-tpNvZNg", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np12NpTitleTokenD1Ev); - LIB_FUNCTION("43B0VnF0P7E", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np12NpTitleTokenD2Ev); - LIB_FUNCTION("jjpTY0fRA44", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np13NpAccessToken14GetAccessTokenEPNS0_6HandleERKNS0_4UserEPS1_); - LIB_FUNCTION("Y5eglu1FrsE", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np13NpAccessToken5ClearEv); - LIB_FUNCTION("FMoSUe3Uac4", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np13NpAccessTokenC1ERK16SceNpAccessToken); - LIB_FUNCTION("MwAYknEWfAU", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np13NpAccessTokenC1ERKS1_); - LIB_FUNCTION("h8d3tfMiyhc", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np13NpAccessTokenC1Ev); - LIB_FUNCTION("h0EenX2eWyA", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np13NpAccessTokenC2ERK16SceNpAccessToken); - LIB_FUNCTION("CNJoUbqVaFc", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np13NpAccessTokenC2ERKS1_); - LIB_FUNCTION("2lzWy2xmnhY", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np13NpAccessTokenC2Ev); - LIB_FUNCTION("SFZYbH7eOnk", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np13NpAccessTokenD0Ev); - LIB_FUNCTION("0SfP+1+7aB4", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np13NpAccessTokenD1Ev); - LIB_FUNCTION("u9tBiSNnvn8", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np13NpAccessTokenD2Ev); - LIB_FUNCTION("D3ucpMtsmEw", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np3ipc14service_client10EndRequestEii); - LIB_FUNCTION("tpXVNSFwJRs", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np3ipc14service_client11InitServiceEi); - LIB_FUNCTION("UvDQq9+QMuI", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np3ipc14service_client11TermServiceEi); - LIB_FUNCTION("huJ-2GzzNXs", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np3ipc14service_client11WaitRequestEiij); - LIB_FUNCTION("EPEUMPT+9XI", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np3ipc14service_client12AbortRequestEii); - LIB_FUNCTION("HhtuEAftVvk", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np3ipc14service_client12BeginRequestEii); - LIB_FUNCTION("t5cZhzOEeDM", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np3ipc14service_client13CreateRequestEimPKvPi); - LIB_FUNCTION("aFpR2VzmSqA", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np3ipc14service_client13DeleteRequestEii); - LIB_FUNCTION("hKTdrR1+dN0", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np3ipc14service_client13GetIpmiClientEv); - LIB_FUNCTION("ZDocIq+2jbI", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np3ipc14service_client13PollEventFlagEijmjPm); - LIB_FUNCTION("fs2BaxmsAZg", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np3ipc14service_client14PollEventQueueEiPvm); - LIB_FUNCTION("HSh8IJaDD7o", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np4NpId5ClearEv); - LIB_FUNCTION("6WTgpKqUxRo", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np4NpIdC1ERK7SceNpId); - LIB_FUNCTION("SuCCD+AZwCc", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np4NpIdC1ERKS1_); - LIB_FUNCTION("YU-PxwZq21U", "libSceNpManager", 1, "libSceNpManager", 1, 1, _ZN3sce2np4NpIdC1Ev); - LIB_FUNCTION("ZHZ6QZ8xHLE", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np4NpIdC2ERK7SceNpId); - LIB_FUNCTION("qBlMzJbMa7c", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np4NpIdC2ERKS1_); - LIB_FUNCTION("OIdCMA7vGHA", "libSceNpManager", 1, "libSceNpManager", 1, 1, _ZN3sce2np4NpIdC2Ev); - LIB_FUNCTION("lUXyFGSFXKo", "libSceNpManager", 1, "libSceNpManager", 1, 1, _ZN3sce2np4NpIdD0Ev); - LIB_FUNCTION("WcfJXQ2NFP4", "libSceNpManager", 1, "libSceNpManager", 1, 1, _ZN3sce2np4NpIdD1Ev); - LIB_FUNCTION("ya+s8zGxVQQ", "libSceNpManager", 1, "libSceNpManager", 1, 1, _ZN3sce2np4NpIdD2Ev); - LIB_FUNCTION("GtMgx4YcBuo", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np4User5ClearEv); - LIB_FUNCTION("bwwspVgS4hQ", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np4User7GetUserEiPS1_); - LIB_FUNCTION("Z4wnPrd9jIE", "libSceNpManager", 1, "libSceNpManager", 1, 1, _ZN3sce2np4UserC1Ei); - LIB_FUNCTION("rgtbpTzx0RA", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np4UserC1ERKS1_); - LIB_FUNCTION("S7Afe0llsL8", "libSceNpManager", 1, "libSceNpManager", 1, 1, _ZN3sce2np4UserC1Ev); - LIB_FUNCTION("i2KGykoRA-4", "libSceNpManager", 1, "libSceNpManager", 1, 1, _ZN3sce2np4UserC2Ei); - LIB_FUNCTION("YvL0D8Vg6VM", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np4UserC2ERKS1_); - LIB_FUNCTION("F-AkFa9cABI", "libSceNpManager", 1, "libSceNpManager", 1, 1, _ZN3sce2np4UserC2Ev); - LIB_FUNCTION("HhKQodH164k", "libSceNpManager", 1, "libSceNpManager", 1, 1, _ZN3sce2np4UserD0Ev); - LIB_FUNCTION("gQFyT9aIsOk", "libSceNpManager", 1, "libSceNpManager", 1, 1, _ZN3sce2np4UserD1Ev); - LIB_FUNCTION("itBuc3IIDaY", "libSceNpManager", 1, "libSceNpManager", 1, 1, _ZN3sce2np4UserD2Ev); - LIB_FUNCTION("BI3Wo2RpVmA", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np8NpTicket5ClearEv); - LIB_FUNCTION("KjXpVcQXaYc", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np8NpTicketD0Ev); - LIB_FUNCTION("AIMCjPPVWZM", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np8NpTicketD1Ev); - LIB_FUNCTION("JL4zz6ehIWE", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2np8NpTicketD2Ev); - LIB_FUNCTION("-WGPScpDMWA", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2npeqERK13SceNpOnlineIdRKNS0_10NpOnlineIdE); - LIB_FUNCTION("m3jEtGAP9jE", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2npeqERKNS0_10NpOnlineIdERK13SceNpOnlineId); - LIB_FUNCTION("KGitZXuSY7U", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2npeqERKNS0_10NpOnlineIdES3_); - LIB_FUNCTION("0qjYM9bp5vs", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2npeqERKNS0_4UserERKi); - LIB_FUNCTION("-BgzebSMaVY", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2npeqERKNS0_4UserES3_); - LIB_FUNCTION("-lWtMfBycrg", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2npneERK13SceNpOnlineIdRKNS0_10NpOnlineIdE); - LIB_FUNCTION("d-nucrQRJZg", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2npneERKNS0_10NpOnlineIdERK13SceNpOnlineId); - LIB_FUNCTION("pt8E9JYqZm4", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2npneERKNS0_10NpOnlineIdES3_); - LIB_FUNCTION("XlGEzCqlHpI", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2npneERKNS0_4UserERKi); - LIB_FUNCTION("ta8lASAxro4", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZN3sce2npneERKNS0_4UserES3_); - LIB_FUNCTION("IIBBieYYH6M", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZNK3sce2np10NpOnlineId7IsEmptyEv); - LIB_FUNCTION("lDCWWROsrEg", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZNK3sce2np12NpTitleToken6GetStrEv); - LIB_FUNCTION("2lvOARTF5x0", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZNK3sce2np13NpAccessToken7IsEmptyEv); - LIB_FUNCTION("noJm52uLN00", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZNK3sce2np4User10IsLoggedInEv); - LIB_FUNCTION("f2K8i7KU20k", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZNK3sce2np4User12GetAccountIdEPm); - LIB_FUNCTION("2hiV0v27kcY", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZNK3sce2np4User12HasAccountIdEPb); - LIB_FUNCTION("GZ2YtnlAzH4", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZNK3sce2np4User25GetAccountIdFromRegistoryEPm); - LIB_FUNCTION("IyT41iG8Ync", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZNK3sce2np4User7IsEmptyEv); - LIB_FUNCTION("JwpT2LYSxrg", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZNK3sce2np4User7IsGuestEv); - LIB_FUNCTION("td8GJFROaEA", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZNK3sce2np4User9GetUserIdEv); - LIB_FUNCTION("ox2Ie98lPAQ", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZNK3sce2np8NpTicket13GetTicketDataEv); - LIB_FUNCTION("fs1TCWwTYCA", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZNK3sce2np8NpTicket13GetTicketSizeEv); - LIB_FUNCTION("i80IWKzGrCE", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZThn16_N3sce2np11NpHttpTransD0Ev); - LIB_FUNCTION("rbsJZPsEjN8", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZThn16_N3sce2np11NpHttpTransD1Ev); - LIB_FUNCTION("YudSGKQqqnI", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZThn8_N3sce2np11NpHttpTransD0Ev); - LIB_FUNCTION("mHE2Hk9Ki80", "libSceNpManager", 1, "libSceNpManager", 1, 1, - _ZThn8_N3sce2np11NpHttpTransD1Ev); - LIB_FUNCTION("OzKvTvg3ZYU", "libSceNpManager", 1, "libSceNpManager", 1, 1, sceNpAbortRequest); - LIB_FUNCTION("JrXA7baBMPQ", "libSceNpManager", 1, "libSceNpManager", 1, 1, sceNpAsmAbort); - LIB_FUNCTION("0cn2c-bk8wA", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmClientAbortRequest); - LIB_FUNCTION("coT6qsU5t9M", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmClientClearNpTitleToken); - LIB_FUNCTION("zHxRg0AUZm8", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmClientClearNpTitleTokenA); - LIB_FUNCTION("tOJ-WGFDt-Y", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmClientCreateRequest2); - LIB_FUNCTION("GPRRxFM01r4", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmClientCreateResourceContext); - LIB_FUNCTION("Auqk+H3qGuo", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmClientCreateResourceContext2); - LIB_FUNCTION("1wMn3X94WME", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmClientDeleteRequest); - LIB_FUNCTION("KA2AITpVTCg", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmClientDeleteResourceContext); - LIB_FUNCTION("4gi0acCfJL4", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmClientDeleteResourceContext2); - LIB_FUNCTION("yWcto7E39+k", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmClientGetAppId); - LIB_FUNCTION("Q7fnpdkjBp0", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmClientGetCacheControlMaxAge); - LIB_FUNCTION("vf+lYeOXdI8", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmClientGetGameNpTitleInfo); - LIB_FUNCTION("YQ7-z4zFWok", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmClientGetGameNpTitleToken); - LIB_FUNCTION("6bvqnBIINiY", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmClientGetGameTitleBanInfo); - LIB_FUNCTION("cOLn5A3ZoqU", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmClientGetNpComInfo2); - LIB_FUNCTION("P6fkTotWFEg", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmClientGetNpComInfo2A); - LIB_FUNCTION("fX+iM4sZIl0", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmClientGetNpComInfo2WithHmac); - LIB_FUNCTION("uObO1I15Se0", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmClientGetNpComInfo3); - LIB_FUNCTION("u+iH3rRyPEE", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmClientGetNpComInfo4); - LIB_FUNCTION("nuPl4uVXYMM", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmClientGetNpTitleId); - LIB_FUNCTION("HtpGVrVLOlA", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmClientGetNpTitleToken); - LIB_FUNCTION("2GbOPwcNJd0", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmClientGetNpTitleToken2); - LIB_FUNCTION("cugDQBHux8k", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmClientGetNpTitleTokenA); - LIB_FUNCTION("rT4NWysyX+g", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmClientGetRelatedGameNpTitleIds); - LIB_FUNCTION("scCBvfXGeRM", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmClientGetRelatedGameNpTitleIdsA); - LIB_FUNCTION("TtHBV0mH8kY", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmClientGetRelatedGameNpTitleIdsResult); - LIB_FUNCTION("O42ZlBvIPMM", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmClientGetServiceBaseUrl); - LIB_FUNCTION("iRvaaSfHBc8", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmClientGetServiceBaseUrlA); - LIB_FUNCTION("nxpboyvJGf4", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmClientGetServiceBaseUrlWithNpTitleId); - LIB_FUNCTION("wXpm75McNZo", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmClientGetServiceBaseUrlWithNpTitleIdA); - LIB_FUNCTION("TiC81-OKjpg", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmClientGetServiceIdInfo); - LIB_FUNCTION("3rlqy6XxrmI", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmClientGetServiceIdInfoA); - LIB_FUNCTION("wZy5M6lzip0", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmClientInitialize); - LIB_FUNCTION("9o4inFK-oWc", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmClientSetNpTitleId); - LIB_FUNCTION("cu1LlJo+5EY", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmClientTerminate); - LIB_FUNCTION("YDDHD6RP4HQ", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmCreateConnection); - LIB_FUNCTION("hIFFMeoLhcY", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmCreateRequest); - LIB_FUNCTION("UxOJvGmy3mA", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmDeleteConnection); - LIB_FUNCTION("RfokKHMuOsE", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmDeleteRequest); - LIB_FUNCTION("ulPuWk7bYCU", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmGenerateNpTitleToken); - LIB_FUNCTION("0bCpZmASTm4", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmGenerateNpTitleToken2); - LIB_FUNCTION("dSlkmPVTcvk", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmGetNpCommInfo); - LIB_FUNCTION("IDXFgpkpDsU", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmGetNpCommInfo2); - LIB_FUNCTION("Dkpw9X-HSVA", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmGetRelatedGameNpTitleIds); - LIB_FUNCTION("kc-O9XKFRIE", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmGetServiceBaseUrl); - LIB_FUNCTION("1Xe+XZ1oI28", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpAsmGetServiceIdInfo); - LIB_FUNCTION("j2dSNi+SJro", "libSceNpManager", 1, "libSceNpManager", 1, 1, sceNpAsmInitialize); - LIB_FUNCTION("Dt2rEe-d5c0", "libSceNpManager", 1, "libSceNpManager", 1, 1, sceNpAsmTerminate); - LIB_FUNCTION("3Zl8BePTh9Y", "libSceNpManager", 1, "libSceNpManager", 1, 1, sceNpCheckCallback); - LIB_FUNCTION("JELHf4xPufo", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpCheckCallbackForLib); - LIB_FUNCTION("2rsFmlGWleQ", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpCheckNpAvailability); - LIB_FUNCTION("8Z2Jc5GvGDI", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpCheckNpAvailabilityA); - LIB_FUNCTION("KfGZg2y73oM", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpCheckNpReachability); - LIB_FUNCTION("r6MyYJkryz8", "libSceNpManager", 1, "libSceNpManager", 1, 1, sceNpCheckPlus); - LIB_FUNCTION("eiqMCt9UshI", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpCreateAsyncRequest); - LIB_FUNCTION("GpLQDNKICac", "libSceNpManager", 1, "libSceNpManager", 1, 1, sceNpCreateRequest); - LIB_FUNCTION("S7QTn72PrDw", "libSceNpManager", 1, "libSceNpManager", 1, 1, sceNpDeleteRequest); - LIB_FUNCTION("+4DegjBqV1g", "libSceNpManager", 1, "libSceNpManager", 1, 1, sceNpGetAccountAge); - LIB_FUNCTION("Ghz9iWDUtC4", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpGetAccountCountry); - LIB_FUNCTION("JT+t00a3TxA", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpGetAccountCountryA); - LIB_FUNCTION("8VBTeRf1ZwI", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpGetAccountDateOfBirth); - LIB_FUNCTION("q3M7XzBKC3s", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpGetAccountDateOfBirthA); - LIB_FUNCTION("a8R9-75u4iM", "libSceNpManager", 1, "libSceNpManager", 1, 1, sceNpGetAccountId); - LIB_FUNCTION("rbknaUjpqWo", "libSceNpManager", 1, "libSceNpManager", 1, 1, sceNpGetAccountIdA); - LIB_FUNCTION("KZ1Mj9yEGYc", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpGetAccountLanguage); - LIB_FUNCTION("3Tcz5bNCfZQ", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpGetAccountLanguage2); - LIB_FUNCTION("TPMbgIxvog0", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpGetAccountLanguageA); - LIB_FUNCTION("IPb1hd1wAGc", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpGetGamePresenceStatus); - LIB_FUNCTION("oPO9U42YpgI", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpGetGamePresenceStatusA); - LIB_FUNCTION("p-o74CnoNzY", "libSceNpManager", 1, "libSceNpManager", 1, 1, sceNpGetNpId); - LIB_FUNCTION("e-ZuhGEoeC4", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpGetNpReachabilityState); - LIB_FUNCTION("XDncXQIJUSk", "libSceNpManager", 1, "libSceNpManager", 1, 1, sceNpGetOnlineId); - LIB_FUNCTION("ilwLM4zOmu4", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpGetParentalControlInfo); - LIB_FUNCTION("m9L3O6yst-U", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpGetParentalControlInfoA); - LIB_FUNCTION("eQH7nWPcAgc", "libSceNpManager", 1, "libSceNpManager", 1, 1, sceNpGetState); - LIB_FUNCTION("VgYczPGB5ss", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpGetUserIdByAccountId); - LIB_FUNCTION("F6E4ycq9Dbg", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpGetUserIdByOnlineId); - LIB_FUNCTION("Oad3rvY-NJQ", "libSceNpManager", 1, "libSceNpManager", 1, 1, sceNpHasSignedUp); - LIB_FUNCTION("fJuQuipzW10", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpIdMapperAbortRequest); - LIB_FUNCTION("alNLle2vACg", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpIdMapperAccountIdToNpId); - LIB_FUNCTION("TV3KKXZLUj4", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpIdMapperAccountIdToOnlineId); - LIB_FUNCTION("lCAYAK4kfkc", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpIdMapperCreateRequest); - LIB_FUNCTION("Z8nyVQCGCVo", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpIdMapperDeleteRequest); - LIB_FUNCTION("21FMz6O4B2E", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpIdMapperNpIdToAccountId); - LIB_FUNCTION("zEZvGyjEhuk", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpIdMapperOnlineIdToAccountId); - LIB_FUNCTION("BdykpTwq2bs", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpInGameMessageAbortHandle); - LIB_FUNCTION("lp7vzwISXMg", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpInGameMessageCheckCallback); - LIB_FUNCTION("s4UEa5iBJdc", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpInGameMessageCreateHandle); - LIB_FUNCTION("+anuSx2avHQ", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpInGameMessageDeleteHandle); - LIB_FUNCTION("Ubv+fP58W1U", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpInGameMessageGetMemoryPoolStatistics); - LIB_FUNCTION("GFhVUpRmbHE", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpInGameMessageInitialize); - LIB_FUNCTION("Vh1bhUG6mSs", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpInGameMessagePrepare); - LIB_FUNCTION("IkL62FMpIpo", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpInGameMessagePrepareA); - LIB_FUNCTION("ON7Sf5XEMmI", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpInGameMessageSendData); - LIB_FUNCTION("PQDFxcnqxtw", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpInGameMessageSendDataA); - LIB_FUNCTION("bMG3cVmUmuk", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpInGameMessageTerminate); - LIB_FUNCTION("GsWjzRU7AWA", "libSceNpManager", 1, "libSceNpManager", 1, 1, sceNpIntCheckPlus); - LIB_FUNCTION("H6xqSNWg0wM", "libSceNpManager", 1, "libSceNpManager", 1, 1, sceNpIntGetAppType); - LIB_FUNCTION("SdNiYQWjU6E", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpIntGetGamePresenceStatus); - LIB_FUNCTION("H0n1QHWdVwQ", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpIntGetNpTitleId); - LIB_FUNCTION("LtYqw9M23hw", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpIntGetNpTitleIdSecret); - LIB_FUNCTION("bZ2mBvP79d8", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpIntRegisterGamePresenceCallback); - LIB_FUNCTION("Ybu6AxV6S0o", "libSceNpManager", 1, "libSceNpManager", 1, 1, sceNpIsPlusMember); - LIB_FUNCTION("AUuzKQIwhXY", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntAbortRequest); - LIB_FUNCTION("J0MUxuo9H9c", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntAddActiveSigninStateCallback); - LIB_FUNCTION("wIX4m0mLfqA", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntAddOnlineIdChangeCallback); - LIB_FUNCTION("E6rzFwsDFwE", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntAddPlusMemberTypeCallback); - LIB_FUNCTION("S9xDus0Cums", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntAddSigninStateCallback); - LIB_FUNCTION("1aifBDr9oqc", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntAuthGetAuthorizationCode); - LIB_FUNCTION("fMWCG0Tqofg", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntAuthGetIdToken); - LIB_FUNCTION("97RAfJch+qE", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntBindOfflineAccountId); - LIB_FUNCTION("Xg7dJekKeHM", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntCheckGameNpAvailability); - LIB_FUNCTION("m4JiU8k2PyI", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntCheckNpAvailability); - LIB_FUNCTION("d+lmTLvsaRs", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntCheckNpAvailabilityByPid); - LIB_FUNCTION("Dvk+xqAqXco", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntCheckNpState); - LIB_FUNCTION("U30AU92fWdU", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntCheckNpStateA); - LIB_FUNCTION("r7d8eEp5vJE", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntClearGameAccessToken); - LIB_FUNCTION("5ZoFb+9L7LY", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntClearOnlineIdChangeFlag); - LIB_FUNCTION("6TTRm8KRqbw", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntClearTicket); - LIB_FUNCTION("QZpXoz9wjbE", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntClearUsedFlag); - LIB_FUNCTION("miJIPnB2cfI", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntClearVshAccessToken); - LIB_FUNCTION("6n8NT1pHW9g", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntCreateLoginContext); - LIB_FUNCTION("CdQg39qlfgY", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntCreateLoginRequest); - LIB_FUNCTION("xZk+QcivrFE", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntCreateRequest); - LIB_FUNCTION("EgmlHG93Tpw", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntDeleteLoginContext); - LIB_FUNCTION("HneC+SpeLwc", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntDeleteRequest); - LIB_FUNCTION("7+uKCMe4SLk", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetAccountCountry); - LIB_FUNCTION("fjJ4xXM+3Tw", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetAccountCountryA); - LIB_FUNCTION("mUcn35JWAvI", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetAccountCountrySdk); - LIB_FUNCTION("CConkVwc7Dc", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetAccountDateOfBirthA); - LIB_FUNCTION("3TbxIy0VEiU", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetAccountDateOfBirthSdk); - LIB_FUNCTION("XS-eY7KRqjQ", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetAccountId); - LIB_FUNCTION("1H07-M8fGec", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetAccountIdSdk); - LIB_FUNCTION("C6xstRBFOio", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetAccountLanguage); - LIB_FUNCTION("e6rTjFmcQjY", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetAccountLanguageA); - LIB_FUNCTION("HvNrMhlWBSk", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetAccountNpEnv); - LIB_FUNCTION("9lz4fkS+eEk", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetAccountType); - LIB_FUNCTION("UAA2-ZTmgJc", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetActiveSigninState); - LIB_FUNCTION("1DMXuE0CbGQ", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetAuthorizationCodeA); - LIB_FUNCTION("xPvV6oMKOWY", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetAuthorizationCodeWithPsnoUri); - LIB_FUNCTION("HkUgFhrpAD4", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetAuthServerErrorFlag); - LIB_FUNCTION("TXzpCgPmXEQ", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetClientCredentialAccessToken); - LIB_FUNCTION("A3m-y8VVgqM", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetCommunicationRestrictionStatus); - LIB_FUNCTION("iTXe6EWAHek", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetGameAccessToken); - LIB_FUNCTION("es6OiIxGiL0", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetIssuerId); - LIB_FUNCTION("jCJEWuExbZg", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetLastAccountLanguage); - LIB_FUNCTION("Oad+nopFTTA", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetMAccountId); - LIB_FUNCTION("BTRVfOx7K1c", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetNpEnv); - LIB_FUNCTION("azEmYv5NqWo", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetNpId); - LIB_FUNCTION("gFB0RmKjyaI", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetNpIdByOnlineId); - LIB_FUNCTION("41CVMRinjWU", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetNpIdSdk); - LIB_FUNCTION("70Swvw7h6ck", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetOfflineAccountId); - LIB_FUNCTION("QnO8zMmKcGE", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetOnlineIdByAccountId); - LIB_FUNCTION("lYkDUwyzr0s", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetOnlineIdChangeFlag); - LIB_FUNCTION("jkQKWQTOu8g", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetOnlineIdInternal); - LIB_FUNCTION("sTtvF4QVhjg", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetOnlineIdSdk); - LIB_FUNCTION("FqtDOHUuDNw", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetParentalControlFlag); - LIB_FUNCTION("NS1sEhoj-B0", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetParentalControlInfo); - LIB_FUNCTION("ggj9Qm4XDrU", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetParentalControlInfoA); - LIB_FUNCTION("vrre3KW6OPg", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetPlusMemberType); - LIB_FUNCTION("XRFchqddEVU", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetPlusMemberTypeNB); - LIB_FUNCTION("iDlso2ZrQfA", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetServerError); - LIB_FUNCTION("6miba-pcQt8", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetSigninState); - LIB_FUNCTION("uVAfWmv+cc8", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetTicket); - LIB_FUNCTION("43B0lauksLY", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetTicketA); - LIB_FUNCTION("HsHttp1Ktm0", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetTitleTokenWithCheck); - LIB_FUNCTION("OZTedKNUeFU", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetUserIdByAccountId); - LIB_FUNCTION("uxLmJ141PmA", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetUserIdByMAccountId); - LIB_FUNCTION("MDczH3SxE9Q", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetUserIdByNpId); - LIB_FUNCTION("Nhxy2NmQhbs", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetUserIdByOfflineAccountId); - LIB_FUNCTION("uSLgWz8ohak", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetUserIdByOnlineId); - LIB_FUNCTION("H33CwgKf4Rs", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetUserIdByOnlineIdSdk); - LIB_FUNCTION("PL10NiZ0XNA", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetUserList); - LIB_FUNCTION("etZ84Rf3Urw", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetUserNum); - LIB_FUNCTION("mBTFixSxTzQ", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetVshAccessToken); - LIB_FUNCTION("+waQfICfHaw", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetVshAccessTokenWithCheck); - LIB_FUNCTION("3f0ejg9vcE8", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntGetVshClientId); - LIB_FUNCTION("ossvuXednsc", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntIsSubAccount); - LIB_FUNCTION("atgHp5dQi5k", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntIsTemporarySignout); - LIB_FUNCTION("jwOjEhWD6E4", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntIsUnregisteredClientError); - LIB_FUNCTION("aU5QaUCW-Ik", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntLoginAddJsonInfo); - LIB_FUNCTION("KQYLX4tVLe4", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntLoginAuthenticate); - LIB_FUNCTION("bzf8a7LxtCQ", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntLoginBind); - LIB_FUNCTION("xAdGRA3ucDg", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntLoginGet2svInfo); - LIB_FUNCTION("-P0LG2EUFBE", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntLoginGetAccessToken); - LIB_FUNCTION("38cfkczfN08", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntLoginGetAccessTokenViaImplicitFlow); - LIB_FUNCTION("dvkqP9KUMfk", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntLoginGetAccountId); - LIB_FUNCTION("sEZaB9KQ10k", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntLoginGetAuthenticateResponse); - LIB_FUNCTION("Y+hLqeLseRk", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntLoginGetAuthorizationCode); - LIB_FUNCTION("EXeJ80p01gs", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntLoginGetDeviceCodeInfo); - LIB_FUNCTION("yqsFy9yg2rU", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntLoginGetEmail); - LIB_FUNCTION("wXfHhmzUjK4", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntLoginGetOnlineId); - LIB_FUNCTION("yWMBHiRdEbk", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntLoginGetUserId); - LIB_FUNCTION("uaCfG0TAPmg", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntLoginParseJsonUserInfo); - LIB_FUNCTION("yHl0pPA3rPQ", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntLoginResetSsoToken); - LIB_FUNCTION("0cLPZO1Voe8", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntLoginRevalidatePassword); - LIB_FUNCTION("hmVLIi3pQDE", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntLoginSetAccountInfo); - LIB_FUNCTION("X-WHexCbxcI", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntLoginSetSsoToken); - LIB_FUNCTION("rCnvauevHHc", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntLoginSignin); - LIB_FUNCTION("qmZHHehEDog", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntLoginValidateCredential); - LIB_FUNCTION("zXukItkUuko", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntLoginValidateKratosAuthCode); - LIB_FUNCTION("ujtFwWJnv+E", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntLoginVerifyDeviceCode); - LIB_FUNCTION("d0IkWV+u25g", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntPfAuth); - LIB_FUNCTION("SuBDgQswXgo", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntRemoveActiveSigninStateCallback); - LIB_FUNCTION("5nayeu8VK5Y", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntRemoveOnlineIdChangeCallback); - LIB_FUNCTION("PafRf+sxnwA", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntRemovePlusMemberTypeCallback); - LIB_FUNCTION("zh2KsQZlAN4", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntRemoveSigninStateCallback); - LIB_FUNCTION("k4M1w5Xstck", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntRevalidatePassword); - LIB_FUNCTION("C77VnsdaKKI", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntSetPlusMemberTypeNB); - LIB_FUNCTION("PZhz+vjp2CM", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntSetTimeout); - LIB_FUNCTION("64D6V-ADQe0", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntSignout); - LIB_FUNCTION("+IagDajB6AQ", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntSubmitUserCode); - LIB_FUNCTION("wUT4cOK0bj0", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntTemporarySignout); - LIB_FUNCTION("IG6ZoGSDaMk", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntUnbindOfflineAccountId); - LIB_FUNCTION("dTvQe2clcNw", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntUpdateVshAccessToken); - LIB_FUNCTION("6AcoqeEhs6E", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerIntWebLoginRequired); - LIB_FUNCTION("LGEIdgILQek", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerPrxStartVsh); - LIB_FUNCTION("9P8qV9WtgKA", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpManagerPrxStopVsh); - LIB_FUNCTION("Gaxrp3EWY-M", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpNotifyPlusFeature); - LIB_FUNCTION("uqcPJLWL08M", "libSceNpManager", 1, "libSceNpManager", 1, 1, sceNpPollAsync); - LIB_FUNCTION("QGN2n4c8na4", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpPush2CreateUserContext); - LIB_FUNCTION("HnV+y1xVP2c", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpPush2DeleteUserContext); - LIB_FUNCTION("sDqpKnwnAJQ", "libSceNpManager", 1, "libSceNpManager", 1, 1, sceNpPush2Init); - LIB_FUNCTION("i1lhp0Wlu+k", "libSceNpManager", 1, "libSceNpManager", 1, 1, sceNpPush2IsInit); - LIB_FUNCTION("KnOXRM1i6KM", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpPush2OptionalCheckCallback); - LIB_FUNCTION("CsIrEmYADDo", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpPush2RegisterDataType); - LIB_FUNCTION("4ic6Lb+mlfA", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpPush2RegisterExtendedDataFilter); - LIB_FUNCTION("OdRcux-QXm8", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpPush2RegisterNotificationExCallback); - LIB_FUNCTION("KiXYNfe7r9o", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpPush2SendPushStatisticsDataSystemTelemetry); - LIB_FUNCTION("+rPzLhUKj1Y", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpPush2SetGlobalMutex); - LIB_FUNCTION("Y1EmilNpj3Y", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpPush2SetNpCommunicationId); - LIB_FUNCTION("KjAjcg3W7F8", "libSceNpManager", 1, "libSceNpManager", 1, 1, sceNpPush2Term); - LIB_FUNCTION("i9NM4gcpZhk", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpPush2TriggerEmptyUserEvent); - LIB_FUNCTION("rwM99K5fzIk", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpPush2UnregisterDataType); - LIB_FUNCTION("LpfRp+-sitI", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpPush2UnregisterExtendedDataFilter); - LIB_FUNCTION("2q3IIivs72Q", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpPush2UnregisterNotificationExCallback); - LIB_FUNCTION("tkNfuSDEgYg", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpPush2UnsetNpCommunicationId); - LIB_FUNCTION("c3T1XEYr9MI", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpPush2WaitCallback); - LIB_FUNCTION("kdrdY-BEJMw", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpPushCheckCallback); - LIB_FUNCTION("DkN+WBclFps", "libSceNpManager", 1, "libSceNpManager", 1, 1, sceNpPushInit); - LIB_FUNCTION("1S2urF24zNQ", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpPushIntBeginInactive); - LIB_FUNCTION("XyvQv2qjUng", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpPushIntEndInactive); - LIB_FUNCTION("B7bQNq1KPQQ", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpPushIntGetBindUserState); - LIB_FUNCTION("O-2TTjhWw10", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpPushIntGetConnectionState); - LIB_FUNCTION("Lg5mNqy1zdQ", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpPushIntRegisterNotificationPacketCallback); - LIB_FUNCTION("RSnzCRbqwDU", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpPushIntUnregisterNotificationPacketCallback); - LIB_FUNCTION("U9hX5ssnYZ4", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpPushRegisterExtendedDataFilter); - LIB_FUNCTION("l3dG7h4TlLg", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpPushRegisterNotificationExCallback); - LIB_FUNCTION("rjatoAGW+Fo", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpPushSetNpCommunicationId); - LIB_FUNCTION("a7ipJQTfQwo", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpPushStartNotification); - LIB_FUNCTION("uhSJXVMYQWc", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpPushStartNotificationA); - LIB_FUNCTION("d695X978Bgw", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpPushStopNotification); - LIB_FUNCTION("Xa1igyHioag", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpPushStopNotificationA); - LIB_FUNCTION("qo5mH49gnDA", "libSceNpManager", 1, "libSceNpManager", 1, 1, sceNpPushTerm); - LIB_FUNCTION("VxjXt8G-9Ns", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpPushUnregisterExtendedDataFilter); - LIB_FUNCTION("6MuJ-vnDk6A", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpPushUnregisterNotificationCallback); - LIB_FUNCTION("j1YsEXl5ta4", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpPushUnsetNpCommunicationId); - LIB_FUNCTION("uFJpaKNBAj4", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpRegisterGamePresenceCallback); - LIB_FUNCTION("KswxLxk4c1Y", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpRegisterGamePresenceCallbackA); - LIB_FUNCTION("hw5KNqAAels", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpRegisterNpReachabilityStateCallback); - LIB_FUNCTION("GImICnh+boA", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpRegisterPlusEventCallback); - LIB_FUNCTION("VfRSmPmj8Q8", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpRegisterStateCallback); - LIB_FUNCTION("qQJfO8HAiaY", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpRegisterStateCallbackA); - LIB_FUNCTION("JHOtNtQ-jmw", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpServiceClientInit); - LIB_FUNCTION("Hhmu86aYI1E", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpServiceClientTerm); - LIB_FUNCTION("41gDrpv1pTw", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpSetAdditionalScope); - LIB_FUNCTION("A2CQ3kgSopQ", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpSetContentRestriction); - LIB_FUNCTION("KO+11cgC7N0", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpSetGamePresenceOnline); - LIB_FUNCTION("C0gNCiRIi4U", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpSetGamePresenceOnlineA); - LIB_FUNCTION("Ec63y59l9tw", "libSceNpManager", 1, "libSceNpManager", 1, 1, sceNpSetNpTitleId); - LIB_FUNCTION("TJqSgUEzexM", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpSetNpTitleIdVsh); - LIB_FUNCTION("-QglDeRr8D8", "libSceNpManager", 1, "libSceNpManager", 1, 1, sceNpSetTimeout); - LIB_FUNCTION("aJZyCcHxzu4", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpUnregisterGamePresenceCallbackA); - LIB_FUNCTION("cRILAEvn+9M", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpUnregisterNpReachabilityStateCallback); - LIB_FUNCTION("xViqJdDgKl0", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpUnregisterPlusEventCallback); - LIB_FUNCTION("mjjTXh+NHWY", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpUnregisterStateCallback); - LIB_FUNCTION("M3wFXbYQtAA", "libSceNpManager", 1, "libSceNpManager", 1, 1, - sceNpUnregisterStateCallbackA); - LIB_FUNCTION("jyi5p9XWUSs", "libSceNpManager", 1, "libSceNpManager", 1, 1, sceNpWaitAsync); - LIB_FUNCTION("BQA2KNZr2H0", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_05003628D66BD87D); - LIB_FUNCTION("DDiKTyHJivk", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_0C388A4F21C98AF9); - LIB_FUNCTION("DOzHoIo+UK8", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_0CECC7A08A3E50AF); - LIB_FUNCTION("DRcDCh2hjus", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_0D17030A1DA18EEB); - LIB_FUNCTION("Dw8yC2rYpT0", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_0F0F320B6AD8A53D); - LIB_FUNCTION("ETxHcJD5oXQ", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_113C477090F9A174); - LIB_FUNCTION("EtNn1ccn8Ag", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_12D367D5C727F008); - LIB_FUNCTION("FkASC9R1kx4", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_1640120BD475931E); - LIB_FUNCTION("Gv4cB8leZaU", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_1AFE1C07C95E65A5); - LIB_FUNCTION("HZg8fgworHI", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_1D983C7E0C28AC72); - LIB_FUNCTION("IIlDaVo7WP4", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_208943695A3B58FE); - LIB_FUNCTION("JYo9EMmaQ7s", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_258A3D10C99A43BB); - LIB_FUNCTION("Jj4yV5S0Eqw", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_263E325794B412AC); - LIB_FUNCTION("K2pL81xeJA0", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_2B6A4BF35C5E240D); - LIB_FUNCTION("K3B--gWssAk", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_2B707FFE05ACB009); - LIB_FUNCTION("LOWrIw66+LQ", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_2CE5AB230EBAF8B4); - LIB_FUNCTION("MjfuPDr8GHs", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_3237EE3C3AFC187B); - LIB_FUNCTION("M9TfsqFgO-8", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_33D4DFB2A1603BFF); - LIB_FUNCTION("OCHXnB7YbzM", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_3821D79C1ED86F33); - LIB_FUNCTION("P0MZl8cQW78", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_3F431997C7105BBF); - LIB_FUNCTION("QZJ5fC0tP8M", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_4192797C2D2D3FC3); - LIB_FUNCTION("Qcfj2Iu7f3U", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_41C7E3D88BBB7F75); - LIB_FUNCTION("Q49ghYqIP88", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_438F60858A883FCF); - LIB_FUNCTION("TEoGLlZg+r0", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_4C4A062E5660FABD); - LIB_FUNCTION("TICPek76Nqc", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_4C808F7A4EFA36A7); - LIB_FUNCTION("ThztfmL2j0Y", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_4E1CED7E62F68F46); - LIB_FUNCTION("UWGkjGphxL8", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_5161A48C6A61C4BF); - LIB_FUNCTION("VCYDmZygruk", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_542603999CA0AEE9); - LIB_FUNCTION("VGkLQcESh5k", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_54690B41C1128799); - LIB_FUNCTION("VadsfClSH60", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_55A76C7C29521FAD); - LIB_FUNCTION("VisjSq4l+Aw", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_562B234AAE25F80C); - LIB_FUNCTION("WNGXUCbdhko", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_58D1975026DD864A); - LIB_FUNCTION("WmA5X4w-4Sg", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_5A60395F8C3FE128); - LIB_FUNCTION("Wzgnd+m18pQ", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_5B382777E9B5F294); - LIB_FUNCTION("XbMB+c1klnE", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_5DB301F9CD649671); - LIB_FUNCTION("ZEHVWGnY1vI", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_6441D55869D8D6F2); - LIB_FUNCTION("aQaOGIVChN4", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_69068E18854284DE); - LIB_FUNCTION("b1nDsAsD4Fo", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_6F59C3B00B03E05A); - LIB_FUNCTION("ckzOf3ihNWs", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_724CCE7F78A1356B); - LIB_FUNCTION("dQ8bBTwkMwg", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_750F1B053C243308); - LIB_FUNCTION("dg8Hm7kd4lg", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_760F079BB91DE258); - LIB_FUNCTION("eGV1IyIVVu8", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_78657523221556EF); - LIB_FUNCTION("gImIi9Nj7aY", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_8089888BD363EDA6); - LIB_FUNCTION("gQygKbb3w6E", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_810CA029B6F7C3A1); - LIB_FUNCTION("glO5Roao0-0", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_8253B94686A8D3FD); - LIB_FUNCTION("hmUTinCeFlQ", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_8665138A709E1654); - LIB_FUNCTION("iC9I+uYJfAw", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_882F48FAE6097C0C); - LIB_FUNCTION("idvkszA-+Ig", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_89DBE4B3303FF888); - LIB_FUNCTION("i9PldiC93Dg", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_8BD3E57620BDDC38); - LIB_FUNCTION("jwp0ATrWM+w", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_8F0A74013AD633EC); - LIB_FUNCTION("j6YmS-P2zAA", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_8FA6264BF3F6CC00); - LIB_FUNCTION("kpLofCwJceQ", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_9292E87C2C0971E4); - LIB_FUNCTION("ksopIxjKA6g", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_92CA292318CA03A8); - LIB_FUNCTION("k0hZbCsX9mI", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_9348596C2B17F662); - LIB_FUNCTION("lQfpsyGl4Nc", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_9507E9B321A5E0D7); - LIB_FUNCTION("mMqV4jGYBzE", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_98CA95E231980731); - LIB_FUNCTION("nmbMS78sGZA", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_9E66CC4BBF2C1990); - LIB_FUNCTION("nmzvcGSJH4Q", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_9E6CEF7064891F84); - LIB_FUNCTION("p7wseS6VIsU", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_A7BC2C792E9522C5); - LIB_FUNCTION("q7oPgJVIywI", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_ABBA0F809548CB02); - LIB_FUNCTION("sUonpM7eAg8", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_B14A27A4CEDE020F); - LIB_FUNCTION("syPuHCOrl-M", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_B323EE1C23AB97F3); - LIB_FUNCTION("tCmBna70C6w", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_B429819DAEF40BAC); - LIB_FUNCTION("tUuVcb6tgsU", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_B54B9571BEAD82C5); - LIB_FUNCTION("tay1z0pBFKY", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_B5ACB5CF4A4114A6); - LIB_FUNCTION("ukG+D0QVfuQ", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_BA41BE0F44157EE4); - LIB_FUNCTION("uqHeyEjZlpA", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_BAA1DEC848D99690); - LIB_FUNCTION("u4zM1slIDrI", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_BB8CCCD6C9480EB2); - LIB_FUNCTION("vsJdqui4uB8", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_BEC25DAAE8B8B81F); - LIB_FUNCTION("v+6TY5GrDHA", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_BFEE936391AB0C70); - LIB_FUNCTION("wN0tvi6mb3o", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_C0DD2DBE2EA66F7A); - LIB_FUNCTION("wfhYv1uGwqE", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_C1F858BF5B86C2A1); - LIB_FUNCTION("wkBhjm-DkgY", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_C240618E6FC39206); - LIB_FUNCTION("wzijRFAxDnk", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_C338A34450310E79); - LIB_FUNCTION("yR7jYD2WaQk", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_C91EE3603D966909); - LIB_FUNCTION("y2cDXtZoz2s", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_CB67035ED668CF6B); - LIB_FUNCTION("1aWii3NRqb4", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_D5A5A28B7351A9BE); - LIB_FUNCTION("2oQmBZ8dWi0", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_DA8426059F1D5A2D); - LIB_FUNCTION("2o4V3QCvnfg", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_DA8E15DD00AF9DF8); - LIB_FUNCTION("24aYdkO7Xdc", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_DB86987643BB5DD7); - LIB_FUNCTION("3sU9cWXBN98", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_DEC53D7165C137DF); - LIB_FUNCTION("397uJvLrlrM", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_DFDEEE26F2EB96B3); - LIB_FUNCTION("4gVqbwFkKGY", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_E2056A6F01642866); - LIB_FUNCTION("4kDpuFl+5W4", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_E240E9B8597EE56E); - LIB_FUNCTION("4yzjO3BvBfc", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_E32CE33B706F05F7); - LIB_FUNCTION("5PZ+-JHIT4c", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_E4F67EFC91C84F87); - LIB_FUNCTION("5vBBomYPg+s", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_E6F041A2660F83EB); - LIB_FUNCTION("6Xm6QTvYTTg", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_E979BA413BD84D38); - LIB_FUNCTION("7d3y0wXbeGY", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_EDDDF2D305DB7866); - LIB_FUNCTION("8I7HcltC4vk", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_F08EC7725B42E2F9); - LIB_FUNCTION("81ldjv-ybsA", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_F3595D8EFFF26EC0); - LIB_FUNCTION("899ScRQvFV0", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_F3DF5271142F155D); - LIB_FUNCTION("+JmXFo3Jh6g", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_F89997168DC987A8); - LIB_FUNCTION("+RtbJcybMNk", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_F91B5B25CC9B30D9); - LIB_FUNCTION("-DNbcQKlhbM", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_FC335B7102A585B3); - LIB_FUNCTION("-OrDVMqLIG4", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_FCEAC354CA8B206E); - LIB_FUNCTION("-5ZuQ1HlZNY", "libSceNpManager", 1, "libSceNpManager", 1, 1, - Func_FF966E4351E564D6); - LIB_FUNCTION("Ybu6AxV6S0o", "libSceNpManagerIsPlusMember", 1, "libSceNpManager", 1, 1, - sceNpIsPlusMember); - LIB_FUNCTION("2rsFmlGWleQ", "libSceNpManagerCompat", 1, "libSceNpManager", 1, 1, - sceNpCheckNpAvailability); - LIB_FUNCTION("Ghz9iWDUtC4", "libSceNpManagerCompat", 1, "libSceNpManager", 1, 1, - sceNpGetAccountCountry); - LIB_FUNCTION("8VBTeRf1ZwI", "libSceNpManagerCompat", 1, "libSceNpManager", 1, 1, - sceNpGetAccountDateOfBirth); - LIB_FUNCTION("a8R9-75u4iM", "libSceNpManagerCompat", 1, "libSceNpManager", 1, 1, - sceNpGetAccountId); - LIB_FUNCTION("KZ1Mj9yEGYc", "libSceNpManagerCompat", 1, "libSceNpManager", 1, 1, - sceNpGetAccountLanguage); - LIB_FUNCTION("IPb1hd1wAGc", "libSceNpManagerCompat", 1, "libSceNpManager", 1, 1, - sceNpGetGamePresenceStatus); - LIB_FUNCTION("ilwLM4zOmu4", "libSceNpManagerCompat", 1, "libSceNpManager", 1, 1, - sceNpGetParentalControlInfo); - LIB_FUNCTION("F6E4ycq9Dbg", "libSceNpManagerCompat", 1, "libSceNpManager", 1, 1, - sceNpGetUserIdByOnlineId); - LIB_FUNCTION("Vh1bhUG6mSs", "libSceNpManagerCompat", 1, "libSceNpManager", 1, 1, - sceNpInGameMessagePrepare); - LIB_FUNCTION("ON7Sf5XEMmI", "libSceNpManagerCompat", 1, "libSceNpManager", 1, 1, - sceNpInGameMessageSendData); - LIB_FUNCTION("uFJpaKNBAj4", "libSceNpManagerCompat", 1, "libSceNpManager", 1, 1, - sceNpRegisterGamePresenceCallback); - LIB_FUNCTION("VfRSmPmj8Q8", "libSceNpManagerCompat", 1, "libSceNpManager", 1, 1, - sceNpRegisterStateCallback); - LIB_FUNCTION("KO+11cgC7N0", "libSceNpManagerCompat", 1, "libSceNpManager", 1, 1, - sceNpSetGamePresenceOnline); - LIB_FUNCTION("mjjTXh+NHWY", "libSceNpManagerCompat", 1, "libSceNpManager", 1, 1, - sceNpUnregisterStateCallback); - LIB_FUNCTION("JELHf4xPufo", "libSceNpManagerForToolkit", 1, "libSceNpManager", 1, 1, - sceNpCheckCallbackForLib); - LIB_FUNCTION("0c7HbXRKUt4", "libSceNpManagerForToolkit", 1, "libSceNpManager", 1, 1, - sceNpRegisterStateCallbackForToolkit); - LIB_FUNCTION("YIvqqvJyjEc", "libSceNpManagerForToolkit", 1, "libSceNpManager", 1, 1, - sceNpUnregisterStateCallbackForToolkit); -}; - -} // namespace Libraries::NpManager diff --git a/src/core/libraries/np_manager/np_manager.h b/src/core/libraries/np_manager/np_manager.h deleted file mode 100644 index 261e40208..000000000 --- a/src/core/libraries/np_manager/np_manager.h +++ /dev/null @@ -1,546 +0,0 @@ -// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project -// SPDX-License-Identifier: GPL-2.0-or-later - -#pragma once - -#include "common/types.h" - -namespace Core::Loader { -class SymbolsResolver; -} - -namespace Libraries::NpManager { - -enum class OrbisNpState : u32 { Unknown = 0, SignedOut, SignedIn }; - -using OrbisNpStateCallbackForNpToolkit = PS4_SYSV_ABI void (*)(s32 userId, OrbisNpState state, - void* userdata); - -constexpr int ORBIS_NP_ONLINEID_MAX_LENGTH = 16; - -using OrbisUserServiceUserId = s32; - -struct OrbisNpOnlineId { - char data[ORBIS_NP_ONLINEID_MAX_LENGTH]; - char term; - char dummy[3]; -}; - -struct OrbisNpId { - OrbisNpOnlineId handle; - u8 opt[8]; - u8 reserved[8]; -}; - -struct OrbisNpCountryCode { - char country_code[2]; - char end; - char pad; -}; - -int PS4_SYSV_ABI Func_EF4378573542A508(); -int PS4_SYSV_ABI _sceNpIpcCreateMemoryFromKernel(); -int PS4_SYSV_ABI _sceNpIpcCreateMemoryFromPool(); -int PS4_SYSV_ABI _sceNpIpcDestroyMemory(); -int PS4_SYSV_ABI _sceNpIpcFreeImpl(); -int PS4_SYSV_ABI _sceNpIpcGetNpMemAllocator(); -int PS4_SYSV_ABI _sceNpIpcMallocImpl(); -int PS4_SYSV_ABI _sceNpIpcReallocImpl(); -int PS4_SYSV_ABI _sceNpManagerCreateMemoryFromKernel(); -int PS4_SYSV_ABI _sceNpManagerCreateMemoryFromPool(); -int PS4_SYSV_ABI _sceNpManagerDestroyMemory(); -int PS4_SYSV_ABI _sceNpManagerFreeImpl(); -int PS4_SYSV_ABI _sceNpManagerGetNpMemAllocator(); -int PS4_SYSV_ABI _sceNpManagerMallocImpl(); -int PS4_SYSV_ABI _sceNpManagerReallocImpl(); -int PS4_SYSV_ABI _ZN3sce2np10NpOnlineId13GetNpOnlineIdERKNS0_4UserEP13SceNpOnlineId(); -int PS4_SYSV_ABI _ZN3sce2np10NpOnlineId13GetNpOnlineIdERKNS0_4UserEPS1_(); -int PS4_SYSV_ABI _ZN3sce2np10NpOnlineId16SetNpOnlineIdStrEPKc(); -int PS4_SYSV_ABI _ZN3sce2np10NpOnlineId5ClearEv(); -int PS4_SYSV_ABI _ZN3sce2np10NpOnlineIdC1ERK13SceNpOnlineId(); -int PS4_SYSV_ABI _ZN3sce2np10NpOnlineIdC1ERKS1_(); -int PS4_SYSV_ABI _ZN3sce2np10NpOnlineIdC1Ev(); -int PS4_SYSV_ABI _ZN3sce2np10NpOnlineIdC2ERK13SceNpOnlineId(); -int PS4_SYSV_ABI _ZN3sce2np10NpOnlineIdC2ERKS1_(); -int PS4_SYSV_ABI _ZN3sce2np10NpOnlineIdC2Ev(); -int PS4_SYSV_ABI _ZN3sce2np10NpOnlineIdD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np10NpOnlineIdD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np10NpOnlineIdD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np11NpHttpTrans13GetResultCodeEPNS0_6HandleE(); -int PS4_SYSV_ABI _ZN3sce2np11NpHttpTrans21SetRequestAccessTokenEPNS0_6HandleE(); -int PS4_SYSV_ABI _ZN3sce2np11NpHttpTrans24BuildAuthorizationHeaderERKNS0_13NpAccessTokenEPcm(); -int PS4_SYSV_ABI _ZN3sce2np11NpHttpTransC2EP16SceNpAllocatorEx(); -int PS4_SYSV_ABI _ZN3sce2np11NpHttpTransD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np11NpHttpTransD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np11NpHttpTransD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np12NpHttpClient4InitEii(); -int PS4_SYSV_ABI _ZN3sce2np12NpHttpClientC1EP16SceNpAllocatorEx(); -int PS4_SYSV_ABI _ZN3sce2np12NpHttpClientC2EP16SceNpAllocatorEx(); -int PS4_SYSV_ABI _ZN3sce2np12NpHttpClientD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np12NpHttpClientD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np12NpHttpClientD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np12NpTitleToken5ClearEv(); -int PS4_SYSV_ABI _ZN3sce2np12NpTitleTokenC1ERKS1_(); -int PS4_SYSV_ABI _ZN3sce2np12NpTitleTokenC1Ev(); -int PS4_SYSV_ABI _ZN3sce2np12NpTitleTokenC2ERKS1_(); -int PS4_SYSV_ABI _ZN3sce2np12NpTitleTokenC2Ev(); -int PS4_SYSV_ABI _ZN3sce2np12NpTitleTokenD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np12NpTitleTokenD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np12NpTitleTokenD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np13NpAccessToken14GetAccessTokenEPNS0_6HandleERKNS0_4UserEPS1_(); -int PS4_SYSV_ABI _ZN3sce2np13NpAccessToken5ClearEv(); -int PS4_SYSV_ABI _ZN3sce2np13NpAccessTokenC1ERK16SceNpAccessToken(); -int PS4_SYSV_ABI _ZN3sce2np13NpAccessTokenC1ERKS1_(); -int PS4_SYSV_ABI _ZN3sce2np13NpAccessTokenC1Ev(); -int PS4_SYSV_ABI _ZN3sce2np13NpAccessTokenC2ERK16SceNpAccessToken(); -int PS4_SYSV_ABI _ZN3sce2np13NpAccessTokenC2ERKS1_(); -int PS4_SYSV_ABI _ZN3sce2np13NpAccessTokenC2Ev(); -int PS4_SYSV_ABI _ZN3sce2np13NpAccessTokenD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np13NpAccessTokenD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np13NpAccessTokenD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np3ipc14service_client10EndRequestEii(); -int PS4_SYSV_ABI _ZN3sce2np3ipc14service_client11InitServiceEi(); -int PS4_SYSV_ABI _ZN3sce2np3ipc14service_client11TermServiceEi(); -int PS4_SYSV_ABI _ZN3sce2np3ipc14service_client11WaitRequestEiij(); -int PS4_SYSV_ABI _ZN3sce2np3ipc14service_client12AbortRequestEii(); -int PS4_SYSV_ABI _ZN3sce2np3ipc14service_client12BeginRequestEii(); -int PS4_SYSV_ABI _ZN3sce2np3ipc14service_client13CreateRequestEimPKvPi(); -int PS4_SYSV_ABI _ZN3sce2np3ipc14service_client13DeleteRequestEii(); -int PS4_SYSV_ABI _ZN3sce2np3ipc14service_client13GetIpmiClientEv(); -int PS4_SYSV_ABI _ZN3sce2np3ipc14service_client13PollEventFlagEijmjPm(); -int PS4_SYSV_ABI _ZN3sce2np3ipc14service_client14PollEventQueueEiPvm(); -int PS4_SYSV_ABI _ZN3sce2np4NpId5ClearEv(); -int PS4_SYSV_ABI _ZN3sce2np4NpIdC1ERK7SceNpId(); -int PS4_SYSV_ABI _ZN3sce2np4NpIdC1ERKS1_(); -int PS4_SYSV_ABI _ZN3sce2np4NpIdC1Ev(); -int PS4_SYSV_ABI _ZN3sce2np4NpIdC2ERK7SceNpId(); -int PS4_SYSV_ABI _ZN3sce2np4NpIdC2ERKS1_(); -int PS4_SYSV_ABI _ZN3sce2np4NpIdC2Ev(); -int PS4_SYSV_ABI _ZN3sce2np4NpIdD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np4NpIdD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np4NpIdD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np4User5ClearEv(); -int PS4_SYSV_ABI _ZN3sce2np4User7GetUserEiPS1_(); -int PS4_SYSV_ABI _ZN3sce2np4UserC1Ei(); -int PS4_SYSV_ABI _ZN3sce2np4UserC1ERKS1_(); -int PS4_SYSV_ABI _ZN3sce2np4UserC1Ev(); -int PS4_SYSV_ABI _ZN3sce2np4UserC2Ei(); -int PS4_SYSV_ABI _ZN3sce2np4UserC2ERKS1_(); -int PS4_SYSV_ABI _ZN3sce2np4UserC2Ev(); -int PS4_SYSV_ABI _ZN3sce2np4UserD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np4UserD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np4UserD2Ev(); -int PS4_SYSV_ABI _ZN3sce2np8NpTicket5ClearEv(); -int PS4_SYSV_ABI _ZN3sce2np8NpTicketD0Ev(); -int PS4_SYSV_ABI _ZN3sce2np8NpTicketD1Ev(); -int PS4_SYSV_ABI _ZN3sce2np8NpTicketD2Ev(); -int PS4_SYSV_ABI _ZN3sce2npeqERK13SceNpOnlineIdRKNS0_10NpOnlineIdE(); -int PS4_SYSV_ABI _ZN3sce2npeqERKNS0_10NpOnlineIdERK13SceNpOnlineId(); -int PS4_SYSV_ABI _ZN3sce2npeqERKNS0_10NpOnlineIdES3_(); -int PS4_SYSV_ABI _ZN3sce2npeqERKNS0_4UserERKi(); -int PS4_SYSV_ABI _ZN3sce2npeqERKNS0_4UserES3_(); -int PS4_SYSV_ABI _ZN3sce2npneERK13SceNpOnlineIdRKNS0_10NpOnlineIdE(); -int PS4_SYSV_ABI _ZN3sce2npneERKNS0_10NpOnlineIdERK13SceNpOnlineId(); -int PS4_SYSV_ABI _ZN3sce2npneERKNS0_10NpOnlineIdES3_(); -int PS4_SYSV_ABI _ZN3sce2npneERKNS0_4UserERKi(); -int PS4_SYSV_ABI _ZN3sce2npneERKNS0_4UserES3_(); -int PS4_SYSV_ABI _ZNK3sce2np10NpOnlineId7IsEmptyEv(); -int PS4_SYSV_ABI _ZNK3sce2np12NpTitleToken6GetStrEv(); -int PS4_SYSV_ABI _ZNK3sce2np13NpAccessToken7IsEmptyEv(); -int PS4_SYSV_ABI _ZNK3sce2np4User10IsLoggedInEv(); -int PS4_SYSV_ABI _ZNK3sce2np4User12GetAccountIdEPm(); -int PS4_SYSV_ABI _ZNK3sce2np4User12HasAccountIdEPb(); -int PS4_SYSV_ABI _ZNK3sce2np4User25GetAccountIdFromRegistoryEPm(); -int PS4_SYSV_ABI _ZNK3sce2np4User7IsEmptyEv(); -int PS4_SYSV_ABI _ZNK3sce2np4User7IsGuestEv(); -int PS4_SYSV_ABI _ZNK3sce2np4User9GetUserIdEv(); -int PS4_SYSV_ABI _ZNK3sce2np8NpTicket13GetTicketDataEv(); -int PS4_SYSV_ABI _ZNK3sce2np8NpTicket13GetTicketSizeEv(); -int PS4_SYSV_ABI _ZThn16_N3sce2np11NpHttpTransD0Ev(); -int PS4_SYSV_ABI _ZThn16_N3sce2np11NpHttpTransD1Ev(); -int PS4_SYSV_ABI _ZThn8_N3sce2np11NpHttpTransD0Ev(); -int PS4_SYSV_ABI _ZThn8_N3sce2np11NpHttpTransD1Ev(); -int PS4_SYSV_ABI sceNpAbortRequest(); -int PS4_SYSV_ABI sceNpAsmAbort(); -int PS4_SYSV_ABI sceNpAsmClientAbortRequest(); -int PS4_SYSV_ABI sceNpAsmClientClearNpTitleToken(); -int PS4_SYSV_ABI sceNpAsmClientClearNpTitleTokenA(); -int PS4_SYSV_ABI sceNpAsmClientCreateRequest2(); -int PS4_SYSV_ABI sceNpAsmClientCreateResourceContext(); -int PS4_SYSV_ABI sceNpAsmClientCreateResourceContext2(); -int PS4_SYSV_ABI sceNpAsmClientDeleteRequest(); -int PS4_SYSV_ABI sceNpAsmClientDeleteResourceContext(); -int PS4_SYSV_ABI sceNpAsmClientDeleteResourceContext2(); -int PS4_SYSV_ABI sceNpAsmClientGetAppId(); -int PS4_SYSV_ABI sceNpAsmClientGetCacheControlMaxAge(); -int PS4_SYSV_ABI sceNpAsmClientGetGameNpTitleInfo(); -int PS4_SYSV_ABI sceNpAsmClientGetGameNpTitleToken(); -int PS4_SYSV_ABI sceNpAsmClientGetGameTitleBanInfo(); -int PS4_SYSV_ABI sceNpAsmClientGetNpComInfo2(); -int PS4_SYSV_ABI sceNpAsmClientGetNpComInfo2A(); -int PS4_SYSV_ABI sceNpAsmClientGetNpComInfo2WithHmac(); -int PS4_SYSV_ABI sceNpAsmClientGetNpComInfo3(); -int PS4_SYSV_ABI sceNpAsmClientGetNpComInfo4(); -int PS4_SYSV_ABI sceNpAsmClientGetNpTitleId(); -int PS4_SYSV_ABI sceNpAsmClientGetNpTitleToken(); -int PS4_SYSV_ABI sceNpAsmClientGetNpTitleToken2(); -int PS4_SYSV_ABI sceNpAsmClientGetNpTitleTokenA(); -int PS4_SYSV_ABI sceNpAsmClientGetRelatedGameNpTitleIds(); -int PS4_SYSV_ABI sceNpAsmClientGetRelatedGameNpTitleIdsA(); -int PS4_SYSV_ABI sceNpAsmClientGetRelatedGameNpTitleIdsResult(); -int PS4_SYSV_ABI sceNpAsmClientGetServiceBaseUrl(); -int PS4_SYSV_ABI sceNpAsmClientGetServiceBaseUrlA(); -int PS4_SYSV_ABI sceNpAsmClientGetServiceBaseUrlWithNpTitleId(); -int PS4_SYSV_ABI sceNpAsmClientGetServiceBaseUrlWithNpTitleIdA(); -int PS4_SYSV_ABI sceNpAsmClientGetServiceIdInfo(); -int PS4_SYSV_ABI sceNpAsmClientGetServiceIdInfoA(); -int PS4_SYSV_ABI sceNpAsmClientInitialize(); -int PS4_SYSV_ABI sceNpAsmClientSetNpTitleId(); -int PS4_SYSV_ABI sceNpAsmClientTerminate(); -int PS4_SYSV_ABI sceNpAsmCreateConnection(); -int PS4_SYSV_ABI sceNpAsmCreateRequest(); -int PS4_SYSV_ABI sceNpAsmDeleteConnection(); -int PS4_SYSV_ABI sceNpAsmDeleteRequest(); -int PS4_SYSV_ABI sceNpAsmGenerateNpTitleToken(); -int PS4_SYSV_ABI sceNpAsmGenerateNpTitleToken2(); -int PS4_SYSV_ABI sceNpAsmGetNpCommInfo(); -int PS4_SYSV_ABI sceNpAsmGetNpCommInfo2(); -int PS4_SYSV_ABI sceNpAsmGetRelatedGameNpTitleIds(); -int PS4_SYSV_ABI sceNpAsmGetServiceBaseUrl(); -int PS4_SYSV_ABI sceNpAsmGetServiceIdInfo(); -int PS4_SYSV_ABI sceNpAsmInitialize(); -int PS4_SYSV_ABI sceNpAsmTerminate(); -int PS4_SYSV_ABI sceNpCheckCallback(); -int PS4_SYSV_ABI sceNpCheckCallbackForLib(); -int PS4_SYSV_ABI sceNpCheckNpAvailability(); -int PS4_SYSV_ABI sceNpCheckNpAvailabilityA(); -int PS4_SYSV_ABI sceNpCheckNpReachability(); -int PS4_SYSV_ABI sceNpCheckPlus(); -int PS4_SYSV_ABI sceNpCreateAsyncRequest(); -int PS4_SYSV_ABI sceNpCreateRequest(); -int PS4_SYSV_ABI sceNpDeleteRequest(int reqId); -int PS4_SYSV_ABI sceNpGetAccountAge(); -int PS4_SYSV_ABI sceNpGetAccountCountry(); -int PS4_SYSV_ABI sceNpGetAccountCountryA(OrbisUserServiceUserId user_id, - OrbisNpCountryCode* country_code); -int PS4_SYSV_ABI sceNpGetAccountDateOfBirth(); -int PS4_SYSV_ABI sceNpGetAccountDateOfBirthA(); -int PS4_SYSV_ABI sceNpGetAccountId(OrbisNpOnlineId* online_id, u64* account_id); -int PS4_SYSV_ABI sceNpGetAccountIdA(OrbisUserServiceUserId user_id, u64* account_id); -int PS4_SYSV_ABI sceNpGetAccountLanguage(); -int PS4_SYSV_ABI sceNpGetAccountLanguage2(); -int PS4_SYSV_ABI sceNpGetAccountLanguageA(); -int PS4_SYSV_ABI sceNpGetGamePresenceStatus(); -int PS4_SYSV_ABI sceNpGetGamePresenceStatusA(); -int PS4_SYSV_ABI sceNpGetNpId(OrbisUserServiceUserId user_id, OrbisNpId* np_id); -int PS4_SYSV_ABI sceNpGetNpReachabilityState(); -int PS4_SYSV_ABI sceNpGetOnlineId(OrbisUserServiceUserId user_id, OrbisNpOnlineId* online_id); -int PS4_SYSV_ABI sceNpGetParentalControlInfo(); -int PS4_SYSV_ABI sceNpGetParentalControlInfoA(); -int PS4_SYSV_ABI sceNpGetState(OrbisUserServiceUserId user_id, OrbisNpState* state); -int PS4_SYSV_ABI sceNpGetUserIdByAccountId(); -int PS4_SYSV_ABI sceNpGetUserIdByOnlineId(); -int PS4_SYSV_ABI sceNpHasSignedUp(OrbisUserServiceUserId user_id, bool* has_signed_up); -int PS4_SYSV_ABI sceNpIdMapperAbortRequest(); -int PS4_SYSV_ABI sceNpIdMapperAccountIdToNpId(); -int PS4_SYSV_ABI sceNpIdMapperAccountIdToOnlineId(); -int PS4_SYSV_ABI sceNpIdMapperCreateRequest(); -int PS4_SYSV_ABI sceNpIdMapperDeleteRequest(); -int PS4_SYSV_ABI sceNpIdMapperNpIdToAccountId(); -int PS4_SYSV_ABI sceNpIdMapperOnlineIdToAccountId(); -int PS4_SYSV_ABI sceNpInGameMessageAbortHandle(); -int PS4_SYSV_ABI sceNpInGameMessageCheckCallback(); -int PS4_SYSV_ABI sceNpInGameMessageCreateHandle(); -int PS4_SYSV_ABI sceNpInGameMessageDeleteHandle(); -int PS4_SYSV_ABI sceNpInGameMessageGetMemoryPoolStatistics(); -int PS4_SYSV_ABI sceNpInGameMessageInitialize(); -int PS4_SYSV_ABI sceNpInGameMessagePrepare(); -int PS4_SYSV_ABI sceNpInGameMessagePrepareA(); -int PS4_SYSV_ABI sceNpInGameMessageSendData(); -int PS4_SYSV_ABI sceNpInGameMessageSendDataA(); -int PS4_SYSV_ABI sceNpInGameMessageTerminate(); -int PS4_SYSV_ABI sceNpIntCheckPlus(); -int PS4_SYSV_ABI sceNpIntGetAppType(); -int PS4_SYSV_ABI sceNpIntGetGamePresenceStatus(); -int PS4_SYSV_ABI sceNpIntGetNpTitleId(); -int PS4_SYSV_ABI sceNpIntGetNpTitleIdSecret(); -int PS4_SYSV_ABI sceNpIntRegisterGamePresenceCallback(); -int PS4_SYSV_ABI sceNpIsPlusMember(); -int PS4_SYSV_ABI sceNpManagerIntAbortRequest(); -int PS4_SYSV_ABI sceNpManagerIntAddActiveSigninStateCallback(); -int PS4_SYSV_ABI sceNpManagerIntAddOnlineIdChangeCallback(); -int PS4_SYSV_ABI sceNpManagerIntAddPlusMemberTypeCallback(); -int PS4_SYSV_ABI sceNpManagerIntAddSigninStateCallback(); -int PS4_SYSV_ABI sceNpManagerIntAuthGetAuthorizationCode(); -int PS4_SYSV_ABI sceNpManagerIntAuthGetIdToken(); -int PS4_SYSV_ABI sceNpManagerIntBindOfflineAccountId(); -int PS4_SYSV_ABI sceNpManagerIntCheckGameNpAvailability(); -int PS4_SYSV_ABI sceNpManagerIntCheckNpAvailability(); -int PS4_SYSV_ABI sceNpManagerIntCheckNpAvailabilityByPid(); -int PS4_SYSV_ABI sceNpManagerIntCheckNpState(); -int PS4_SYSV_ABI sceNpManagerIntCheckNpStateA(); -int PS4_SYSV_ABI sceNpManagerIntClearGameAccessToken(); -int PS4_SYSV_ABI sceNpManagerIntClearOnlineIdChangeFlag(); -int PS4_SYSV_ABI sceNpManagerIntClearTicket(); -int PS4_SYSV_ABI sceNpManagerIntClearUsedFlag(); -int PS4_SYSV_ABI sceNpManagerIntClearVshAccessToken(); -int PS4_SYSV_ABI sceNpManagerIntCreateLoginContext(); -int PS4_SYSV_ABI sceNpManagerIntCreateLoginRequest(); -int PS4_SYSV_ABI sceNpManagerIntCreateRequest(); -int PS4_SYSV_ABI sceNpManagerIntDeleteLoginContext(); -int PS4_SYSV_ABI sceNpManagerIntDeleteRequest(); -int PS4_SYSV_ABI sceNpManagerIntGetAccountCountry(); -int PS4_SYSV_ABI sceNpManagerIntGetAccountCountryA(); -int PS4_SYSV_ABI sceNpManagerIntGetAccountCountrySdk(); -int PS4_SYSV_ABI sceNpManagerIntGetAccountDateOfBirthA(); -int PS4_SYSV_ABI sceNpManagerIntGetAccountDateOfBirthSdk(); -int PS4_SYSV_ABI sceNpManagerIntGetAccountId(); -int PS4_SYSV_ABI sceNpManagerIntGetAccountIdSdk(); -int PS4_SYSV_ABI sceNpManagerIntGetAccountLanguage(); -int PS4_SYSV_ABI sceNpManagerIntGetAccountLanguageA(); -int PS4_SYSV_ABI sceNpManagerIntGetAccountNpEnv(); -int PS4_SYSV_ABI sceNpManagerIntGetAccountType(); -int PS4_SYSV_ABI sceNpManagerIntGetActiveSigninState(); -int PS4_SYSV_ABI sceNpManagerIntGetAuthorizationCodeA(); -int PS4_SYSV_ABI sceNpManagerIntGetAuthorizationCodeWithPsnoUri(); -int PS4_SYSV_ABI sceNpManagerIntGetAuthServerErrorFlag(); -int PS4_SYSV_ABI sceNpManagerIntGetClientCredentialAccessToken(); -int PS4_SYSV_ABI sceNpManagerIntGetCommunicationRestrictionStatus(); -int PS4_SYSV_ABI sceNpManagerIntGetGameAccessToken(); -int PS4_SYSV_ABI sceNpManagerIntGetIssuerId(); -int PS4_SYSV_ABI sceNpManagerIntGetLastAccountLanguage(); -int PS4_SYSV_ABI sceNpManagerIntGetMAccountId(); -int PS4_SYSV_ABI sceNpManagerIntGetNpEnv(); -int PS4_SYSV_ABI sceNpManagerIntGetNpId(); -int PS4_SYSV_ABI sceNpManagerIntGetNpIdByOnlineId(); -int PS4_SYSV_ABI sceNpManagerIntGetNpIdSdk(); -int PS4_SYSV_ABI sceNpManagerIntGetOfflineAccountId(); -int PS4_SYSV_ABI sceNpManagerIntGetOnlineIdByAccountId(); -int PS4_SYSV_ABI sceNpManagerIntGetOnlineIdChangeFlag(); -int PS4_SYSV_ABI sceNpManagerIntGetOnlineIdInternal(); -int PS4_SYSV_ABI sceNpManagerIntGetOnlineIdSdk(); -int PS4_SYSV_ABI sceNpManagerIntGetParentalControlFlag(); -int PS4_SYSV_ABI sceNpManagerIntGetParentalControlInfo(); -int PS4_SYSV_ABI sceNpManagerIntGetParentalControlInfoA(); -int PS4_SYSV_ABI sceNpManagerIntGetPlusMemberType(); -int PS4_SYSV_ABI sceNpManagerIntGetPlusMemberTypeNB(); -int PS4_SYSV_ABI sceNpManagerIntGetServerError(); -int PS4_SYSV_ABI sceNpManagerIntGetSigninState(); -int PS4_SYSV_ABI sceNpManagerIntGetTicket(); -int PS4_SYSV_ABI sceNpManagerIntGetTicketA(); -int PS4_SYSV_ABI sceNpManagerIntGetTitleTokenWithCheck(); -int PS4_SYSV_ABI sceNpManagerIntGetUserIdByAccountId(); -int PS4_SYSV_ABI sceNpManagerIntGetUserIdByMAccountId(); -int PS4_SYSV_ABI sceNpManagerIntGetUserIdByNpId(); -int PS4_SYSV_ABI sceNpManagerIntGetUserIdByOfflineAccountId(); -int PS4_SYSV_ABI sceNpManagerIntGetUserIdByOnlineId(); -int PS4_SYSV_ABI sceNpManagerIntGetUserIdByOnlineIdSdk(); -int PS4_SYSV_ABI sceNpManagerIntGetUserList(); -int PS4_SYSV_ABI sceNpManagerIntGetUserNum(); -int PS4_SYSV_ABI sceNpManagerIntGetVshAccessToken(); -int PS4_SYSV_ABI sceNpManagerIntGetVshAccessTokenWithCheck(); -int PS4_SYSV_ABI sceNpManagerIntGetVshClientId(); -int PS4_SYSV_ABI sceNpManagerIntIsSubAccount(); -int PS4_SYSV_ABI sceNpManagerIntIsTemporarySignout(); -int PS4_SYSV_ABI sceNpManagerIntIsUnregisteredClientError(); -int PS4_SYSV_ABI sceNpManagerIntLoginAddJsonInfo(); -int PS4_SYSV_ABI sceNpManagerIntLoginAuthenticate(); -int PS4_SYSV_ABI sceNpManagerIntLoginBind(); -int PS4_SYSV_ABI sceNpManagerIntLoginGet2svInfo(); -int PS4_SYSV_ABI sceNpManagerIntLoginGetAccessToken(); -int PS4_SYSV_ABI sceNpManagerIntLoginGetAccessTokenViaImplicitFlow(); -int PS4_SYSV_ABI sceNpManagerIntLoginGetAccountId(); -int PS4_SYSV_ABI sceNpManagerIntLoginGetAuthenticateResponse(); -int PS4_SYSV_ABI sceNpManagerIntLoginGetAuthorizationCode(); -int PS4_SYSV_ABI sceNpManagerIntLoginGetDeviceCodeInfo(); -int PS4_SYSV_ABI sceNpManagerIntLoginGetEmail(); -int PS4_SYSV_ABI sceNpManagerIntLoginGetOnlineId(); -int PS4_SYSV_ABI sceNpManagerIntLoginGetUserId(); -int PS4_SYSV_ABI sceNpManagerIntLoginParseJsonUserInfo(); -int PS4_SYSV_ABI sceNpManagerIntLoginResetSsoToken(); -int PS4_SYSV_ABI sceNpManagerIntLoginRevalidatePassword(); -int PS4_SYSV_ABI sceNpManagerIntLoginSetAccountInfo(); -int PS4_SYSV_ABI sceNpManagerIntLoginSetSsoToken(); -int PS4_SYSV_ABI sceNpManagerIntLoginSignin(); -int PS4_SYSV_ABI sceNpManagerIntLoginValidateCredential(); -int PS4_SYSV_ABI sceNpManagerIntLoginValidateKratosAuthCode(); -int PS4_SYSV_ABI sceNpManagerIntLoginVerifyDeviceCode(); -int PS4_SYSV_ABI sceNpManagerIntPfAuth(); -int PS4_SYSV_ABI sceNpManagerIntRemoveActiveSigninStateCallback(); -int PS4_SYSV_ABI sceNpManagerIntRemoveOnlineIdChangeCallback(); -int PS4_SYSV_ABI sceNpManagerIntRemovePlusMemberTypeCallback(); -int PS4_SYSV_ABI sceNpManagerIntRemoveSigninStateCallback(); -int PS4_SYSV_ABI sceNpManagerIntRevalidatePassword(); -int PS4_SYSV_ABI sceNpManagerIntSetPlusMemberTypeNB(); -int PS4_SYSV_ABI sceNpManagerIntSetTimeout(); -int PS4_SYSV_ABI sceNpManagerIntSignout(); -int PS4_SYSV_ABI sceNpManagerIntSubmitUserCode(); -int PS4_SYSV_ABI sceNpManagerIntTemporarySignout(); -int PS4_SYSV_ABI sceNpManagerIntUnbindOfflineAccountId(); -int PS4_SYSV_ABI sceNpManagerIntUpdateVshAccessToken(); -int PS4_SYSV_ABI sceNpManagerIntWebLoginRequired(); -int PS4_SYSV_ABI sceNpManagerPrxStartVsh(); -int PS4_SYSV_ABI sceNpManagerPrxStopVsh(); -int PS4_SYSV_ABI sceNpNotifyPlusFeature(); -int PS4_SYSV_ABI sceNpPollAsync(); -int PS4_SYSV_ABI sceNpPush2CreateUserContext(); -int PS4_SYSV_ABI sceNpPush2DeleteUserContext(); -int PS4_SYSV_ABI sceNpPush2Init(); -int PS4_SYSV_ABI sceNpPush2IsInit(); -int PS4_SYSV_ABI sceNpPush2OptionalCheckCallback(); -int PS4_SYSV_ABI sceNpPush2RegisterDataType(); -int PS4_SYSV_ABI sceNpPush2RegisterExtendedDataFilter(); -int PS4_SYSV_ABI sceNpPush2RegisterNotificationExCallback(); -int PS4_SYSV_ABI sceNpPush2SendPushStatisticsDataSystemTelemetry(); -int PS4_SYSV_ABI sceNpPush2SetGlobalMutex(); -int PS4_SYSV_ABI sceNpPush2SetNpCommunicationId(); -int PS4_SYSV_ABI sceNpPush2Term(); -int PS4_SYSV_ABI sceNpPush2TriggerEmptyUserEvent(); -int PS4_SYSV_ABI sceNpPush2UnregisterDataType(); -int PS4_SYSV_ABI sceNpPush2UnregisterExtendedDataFilter(); -int PS4_SYSV_ABI sceNpPush2UnregisterNotificationExCallback(); -int PS4_SYSV_ABI sceNpPush2UnsetNpCommunicationId(); -int PS4_SYSV_ABI sceNpPush2WaitCallback(); -int PS4_SYSV_ABI sceNpPushCheckCallback(); -int PS4_SYSV_ABI sceNpPushInit(); -int PS4_SYSV_ABI sceNpPushIntBeginInactive(); -int PS4_SYSV_ABI sceNpPushIntEndInactive(); -int PS4_SYSV_ABI sceNpPushIntGetBindUserState(); -int PS4_SYSV_ABI sceNpPushIntGetConnectionState(); -int PS4_SYSV_ABI sceNpPushIntRegisterNotificationPacketCallback(); -int PS4_SYSV_ABI sceNpPushIntUnregisterNotificationPacketCallback(); -int PS4_SYSV_ABI sceNpPushRegisterExtendedDataFilter(); -int PS4_SYSV_ABI sceNpPushRegisterNotificationExCallback(); -int PS4_SYSV_ABI sceNpPushSetNpCommunicationId(); -int PS4_SYSV_ABI sceNpPushStartNotification(); -int PS4_SYSV_ABI sceNpPushStartNotificationA(); -int PS4_SYSV_ABI sceNpPushStopNotification(); -int PS4_SYSV_ABI sceNpPushStopNotificationA(); -int PS4_SYSV_ABI sceNpPushTerm(); -int PS4_SYSV_ABI sceNpPushUnregisterExtendedDataFilter(); -int PS4_SYSV_ABI sceNpPushUnregisterNotificationCallback(); -int PS4_SYSV_ABI sceNpPushUnsetNpCommunicationId(); -int PS4_SYSV_ABI sceNpRegisterGamePresenceCallback(); -int PS4_SYSV_ABI sceNpRegisterGamePresenceCallbackA(); -int PS4_SYSV_ABI sceNpRegisterNpReachabilityStateCallback(); -int PS4_SYSV_ABI sceNpRegisterPlusEventCallback(); -int PS4_SYSV_ABI sceNpRegisterStateCallback(); -int PS4_SYSV_ABI sceNpRegisterStateCallbackA(); -int PS4_SYSV_ABI sceNpServiceClientInit(); -int PS4_SYSV_ABI sceNpServiceClientTerm(); -int PS4_SYSV_ABI sceNpSetAdditionalScope(); -int PS4_SYSV_ABI sceNpSetContentRestriction(); -int PS4_SYSV_ABI sceNpSetGamePresenceOnline(); -int PS4_SYSV_ABI sceNpSetGamePresenceOnlineA(); -int PS4_SYSV_ABI sceNpSetNpTitleId(); -int PS4_SYSV_ABI sceNpSetNpTitleIdVsh(); -int PS4_SYSV_ABI sceNpSetTimeout(); -int PS4_SYSV_ABI sceNpUnregisterGamePresenceCallbackA(); -int PS4_SYSV_ABI sceNpUnregisterNpReachabilityStateCallback(); -int PS4_SYSV_ABI sceNpUnregisterPlusEventCallback(); -int PS4_SYSV_ABI sceNpUnregisterStateCallback(); -int PS4_SYSV_ABI sceNpUnregisterStateCallbackA(); -int PS4_SYSV_ABI sceNpWaitAsync(); -int PS4_SYSV_ABI Func_05003628D66BD87D(); -int PS4_SYSV_ABI Func_0C388A4F21C98AF9(); -int PS4_SYSV_ABI Func_0CECC7A08A3E50AF(); -int PS4_SYSV_ABI Func_0D17030A1DA18EEB(); -int PS4_SYSV_ABI Func_0F0F320B6AD8A53D(); -int PS4_SYSV_ABI Func_113C477090F9A174(); -int PS4_SYSV_ABI Func_12D367D5C727F008(); -int PS4_SYSV_ABI Func_1640120BD475931E(); -int PS4_SYSV_ABI Func_1AFE1C07C95E65A5(); -int PS4_SYSV_ABI Func_1D983C7E0C28AC72(); -int PS4_SYSV_ABI Func_208943695A3B58FE(); -int PS4_SYSV_ABI Func_258A3D10C99A43BB(); -int PS4_SYSV_ABI Func_263E325794B412AC(); -int PS4_SYSV_ABI Func_2B6A4BF35C5E240D(); -int PS4_SYSV_ABI Func_2B707FFE05ACB009(); -int PS4_SYSV_ABI Func_2CE5AB230EBAF8B4(); -int PS4_SYSV_ABI Func_3237EE3C3AFC187B(); -int PS4_SYSV_ABI Func_33D4DFB2A1603BFF(); -int PS4_SYSV_ABI Func_3821D79C1ED86F33(); -int PS4_SYSV_ABI Func_3F431997C7105BBF(); -int PS4_SYSV_ABI Func_4192797C2D2D3FC3(); -int PS4_SYSV_ABI Func_41C7E3D88BBB7F75(); -int PS4_SYSV_ABI Func_438F60858A883FCF(); -int PS4_SYSV_ABI Func_4C4A062E5660FABD(); -int PS4_SYSV_ABI Func_4C808F7A4EFA36A7(); -int PS4_SYSV_ABI Func_4E1CED7E62F68F46(); -int PS4_SYSV_ABI Func_5161A48C6A61C4BF(); -int PS4_SYSV_ABI Func_542603999CA0AEE9(); -int PS4_SYSV_ABI Func_54690B41C1128799(); -int PS4_SYSV_ABI Func_55A76C7C29521FAD(); -int PS4_SYSV_ABI Func_562B234AAE25F80C(); -int PS4_SYSV_ABI Func_58D1975026DD864A(); -int PS4_SYSV_ABI Func_5A60395F8C3FE128(); -int PS4_SYSV_ABI Func_5B382777E9B5F294(); -int PS4_SYSV_ABI Func_5DB301F9CD649671(); -int PS4_SYSV_ABI Func_6441D55869D8D6F2(); -int PS4_SYSV_ABI Func_69068E18854284DE(); -int PS4_SYSV_ABI Func_6F59C3B00B03E05A(); -int PS4_SYSV_ABI Func_724CCE7F78A1356B(); -int PS4_SYSV_ABI Func_750F1B053C243308(); -int PS4_SYSV_ABI Func_760F079BB91DE258(); -int PS4_SYSV_ABI Func_78657523221556EF(); -int PS4_SYSV_ABI Func_8089888BD363EDA6(); -int PS4_SYSV_ABI Func_810CA029B6F7C3A1(); -int PS4_SYSV_ABI Func_8253B94686A8D3FD(); -int PS4_SYSV_ABI Func_8665138A709E1654(); -int PS4_SYSV_ABI Func_882F48FAE6097C0C(); -int PS4_SYSV_ABI Func_89DBE4B3303FF888(); -int PS4_SYSV_ABI Func_8BD3E57620BDDC38(); -int PS4_SYSV_ABI Func_8F0A74013AD633EC(); -int PS4_SYSV_ABI Func_8FA6264BF3F6CC00(); -int PS4_SYSV_ABI Func_9292E87C2C0971E4(); -int PS4_SYSV_ABI Func_92CA292318CA03A8(); -int PS4_SYSV_ABI Func_9348596C2B17F662(); -int PS4_SYSV_ABI Func_9507E9B321A5E0D7(); -int PS4_SYSV_ABI Func_98CA95E231980731(); -int PS4_SYSV_ABI Func_9E66CC4BBF2C1990(); -int PS4_SYSV_ABI Func_9E6CEF7064891F84(); -int PS4_SYSV_ABI Func_A7BC2C792E9522C5(); -int PS4_SYSV_ABI Func_ABBA0F809548CB02(); -int PS4_SYSV_ABI Func_B14A27A4CEDE020F(); -int PS4_SYSV_ABI Func_B323EE1C23AB97F3(); -int PS4_SYSV_ABI Func_B429819DAEF40BAC(); -int PS4_SYSV_ABI Func_B54B9571BEAD82C5(); -int PS4_SYSV_ABI Func_B5ACB5CF4A4114A6(); -int PS4_SYSV_ABI Func_BA41BE0F44157EE4(); -int PS4_SYSV_ABI Func_BAA1DEC848D99690(); -int PS4_SYSV_ABI Func_BB8CCCD6C9480EB2(); -int PS4_SYSV_ABI Func_BEC25DAAE8B8B81F(); -int PS4_SYSV_ABI Func_BFEE936391AB0C70(); -int PS4_SYSV_ABI Func_C0DD2DBE2EA66F7A(); -int PS4_SYSV_ABI Func_C1F858BF5B86C2A1(); -int PS4_SYSV_ABI Func_C240618E6FC39206(); -int PS4_SYSV_ABI Func_C338A34450310E79(); -int PS4_SYSV_ABI Func_C91EE3603D966909(); -int PS4_SYSV_ABI Func_CB67035ED668CF6B(); -int PS4_SYSV_ABI Func_D5A5A28B7351A9BE(); -int PS4_SYSV_ABI Func_DA8426059F1D5A2D(); -int PS4_SYSV_ABI Func_DA8E15DD00AF9DF8(); -int PS4_SYSV_ABI Func_DB86987643BB5DD7(); -int PS4_SYSV_ABI Func_DEC53D7165C137DF(); -int PS4_SYSV_ABI Func_DFDEEE26F2EB96B3(); -int PS4_SYSV_ABI Func_E2056A6F01642866(); -int PS4_SYSV_ABI Func_E240E9B8597EE56E(); -int PS4_SYSV_ABI Func_E32CE33B706F05F7(); -int PS4_SYSV_ABI Func_E4F67EFC91C84F87(); -int PS4_SYSV_ABI Func_E6F041A2660F83EB(); -int PS4_SYSV_ABI Func_E979BA413BD84D38(); -int PS4_SYSV_ABI Func_EDDDF2D305DB7866(); -int PS4_SYSV_ABI Func_F08EC7725B42E2F9(); -int PS4_SYSV_ABI Func_F3595D8EFFF26EC0(); -int PS4_SYSV_ABI Func_F3DF5271142F155D(); -int PS4_SYSV_ABI Func_F89997168DC987A8(); -int PS4_SYSV_ABI Func_F91B5B25CC9B30D9(); -int PS4_SYSV_ABI Func_FC335B7102A585B3(); -int PS4_SYSV_ABI Func_FCEAC354CA8B206E(); -int PS4_SYSV_ABI Func_FF966E4351E564D6(); -int PS4_SYSV_ABI sceNpRegisterStateCallbackForToolkit(OrbisNpStateCallbackForNpToolkit callback, - void* userdata); -int PS4_SYSV_ABI sceNpUnregisterStateCallbackForToolkit(); - -void RegisterLib(Core::Loader::SymbolsResolver* sym); -} // namespace Libraries::NpManager diff --git a/src/core/libraries/np_manager/np_manager_error.h b/src/core/libraries/np_manager/np_manager_error.h deleted file mode 100644 index 4af0d08ef..000000000 --- a/src/core/libraries/np_manager/np_manager_error.h +++ /dev/null @@ -1,9 +0,0 @@ -// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project -// SPDX-License-Identifier: GPL-2.0-or-later - -#pragma once - -#include "core/libraries/error_codes.h" - -constexpr int ORBIS_NP_ERROR_INVALID_ARGUMENT = 0x80550003; -constexpr int ORBIS_NP_ERROR_SIGNED_OUT = 0x80550006; \ No newline at end of file diff --git a/src/core/libraries/share_play/shareplay.h b/src/core/libraries/share_play/shareplay.h index d515e02c1..ca65c9a9d 100644 --- a/src/core/libraries/share_play/shareplay.h +++ b/src/core/libraries/share_play/shareplay.h @@ -3,8 +3,8 @@ #pragma once -#include #include "common/types.h" +#include "core/libraries/np/np_types.h" namespace Core::Loader { class SymbolsResolver; @@ -19,8 +19,8 @@ constexpr int ORBIS_SHARE_PLAY_CONNECTION_STATUS_CONNECTED = 0x02; struct OrbisSharePlayConnectionInfo { int status; int mode; - Libraries::NpManager::OrbisNpOnlineId hostOnlineId; - Libraries::NpManager::OrbisNpOnlineId visitorOnlineId; + Libraries::Np::OrbisNpOnlineId hostOnlineId; + Libraries::Np::OrbisNpOnlineId visitorOnlineId; s32 hostUserId; s32 visitorUserId; }; diff --git a/src/emulator.cpp b/src/emulator.cpp index ba367a1f9..d402fee4c 100644 --- a/src/emulator.cpp +++ b/src/emulator.cpp @@ -35,7 +35,7 @@ #include "core/libraries/libc_internal/libc_internal.h" #include "core/libraries/libs.h" #include "core/libraries/ngs2/ngs2.h" -#include "core/libraries/np_trophy/np_trophy.h" +#include "core/libraries/np/np_trophy.h" #include "core/libraries/rtc/rtc.h" #include "core/libraries/save_data/save_backup.h" #include "core/linker.h" @@ -196,7 +196,7 @@ void Emulator::Run(std::filesystem::path file, const std::vector ar // Initialize patcher and trophies if (!id.empty()) { MemoryPatcher::g_game_serial = id; - Libraries::NpTrophy::game_serial = id; + Libraries::Np::NpTrophy::game_serial = id; const auto trophyDir = Common::FS::GetUserPath(Common::FS::PathType::MetaDataDir) / id / "TrophyFiles"; @@ -342,11 +342,11 @@ void Emulator::Run(std::filesystem::path file, const std::vector ar void Emulator::LoadSystemModules(const std::string& game_serial) { constexpr auto ModulesToLoad = std::to_array( - {{"libSceNgs2.sprx", &Libraries::Ngs2::RegisterlibSceNgs2}, + {{"libSceNgs2.sprx", &Libraries::Ngs2::RegisterLib}, {"libSceUlt.sprx", nullptr}, {"libSceJson.sprx", nullptr}, {"libSceJson2.sprx", nullptr}, - {"libSceLibcInternal.sprx", &Libraries::LibcInternal::RegisterlibSceLibcInternal}, + {"libSceLibcInternal.sprx", &Libraries::LibcInternal::RegisterLib}, {"libSceCesCs.sprx", nullptr}, {"libSceFont.sprx", nullptr}, {"libSceFontFt.sprx", nullptr},