np: stub sceNpSnsFacebookDialogUpdateStatus (#3661)

This commit is contained in:
Marcin Mikołajczyk
2025-09-27 04:19:41 +02:00
committed by GitHub
parent 905c536ef4
commit 937d50cb00
6 changed files with 136 additions and 93 deletions

View File

@@ -600,6 +600,8 @@ set(NP_LIBS src/core/libraries/np/np_error.h
src/core/libraries/np/np_auth.h src/core/libraries/np/np_auth.h
src/core/libraries/np/np_profile_dialog.cpp src/core/libraries/np/np_profile_dialog.cpp
src/core/libraries/np/np_profile_dialog.h src/core/libraries/np/np_profile_dialog.h
src/core/libraries/np/np_sns_facebook_dialog.cpp
src/core/libraries/np/np_sns_facebook_dialog.h
) )
set(ZLIB_LIB src/core/libraries/zlib/zlib.cpp set(ZLIB_LIB src/core/libraries/zlib/zlib.cpp

View File

@@ -109,6 +109,7 @@ bool ParseFilterRule(Filter& instance, Iterator begin, Iterator end) {
SUB(Lib, NpTrophy) \ SUB(Lib, NpTrophy) \
SUB(Lib, NpWebApi) \ SUB(Lib, NpWebApi) \
SUB(Lib, NpProfileDialog) \ SUB(Lib, NpProfileDialog) \
SUB(Lib, NpSnsFacebookDialog) \
SUB(Lib, Screenshot) \ SUB(Lib, Screenshot) \
SUB(Lib, LibCInternal) \ SUB(Lib, LibCInternal) \
SUB(Lib, AppContent) \ SUB(Lib, AppContent) \

View File

@@ -29,99 +29,100 @@ enum class Level : u8 {
* filter.cpp. * filter.cpp.
*/ */
enum class Class : u8 { enum class Class : u8 {
Log, ///< Messages about the log system itself Log, ///< Messages about the log system itself
Common, ///< Library routines Common, ///< Library routines
Common_Filesystem, ///< Filesystem interface library Common_Filesystem, ///< Filesystem interface library
Common_Memory, ///< Memory mapping and management functions Common_Memory, ///< Memory mapping and management functions
Core, ///< LLE emulation core Core, ///< LLE emulation core
Core_Linker, ///< The module linker Core_Linker, ///< The module linker
Core_Devices, ///< Devices emulation Core_Devices, ///< Devices emulation
Config, ///< Emulator configuration (including commandline) Config, ///< Emulator configuration (including commandline)
Debug, ///< Debugging tools Debug, ///< Debugging tools
Kernel, ///< The HLE implementation of the PS4 kernel. Kernel, ///< The HLE implementation of the PS4 kernel.
Kernel_Pthread, ///< The pthread implementation of the kernel. Kernel_Pthread, ///< The pthread implementation of the kernel.
Kernel_Fs, ///< The filesystem implementation of the kernel. Kernel_Fs, ///< The filesystem implementation of the kernel.
Kernel_Vmm, ///< The virtual memory implementation of the kernel. Kernel_Vmm, ///< The virtual memory implementation of the kernel.
Kernel_Event, ///< The event management implementation of the kernel. Kernel_Event, ///< The event management implementation of the kernel.
Kernel_Sce, ///< The sony specific interfaces provided by the kernel. Kernel_Sce, ///< The sony specific interfaces provided by the kernel.
Lib, ///< HLE implementation of system library. Each major library Lib, ///< HLE implementation of system library. Each major library
///< should have its own subclass. ///< should have its own subclass.
Lib_LibC, ///< The LibC implementation. Lib_LibC, ///< The LibC implementation.
Lib_LibcInternal, ///< The LibcInternal implementation. Lib_LibcInternal, ///< The LibcInternal implementation.
Lib_Kernel, ///< The LibKernel implementation. Lib_Kernel, ///< The LibKernel implementation.
Lib_Pad, ///< The LibScePad implementation. Lib_Pad, ///< The LibScePad implementation.
Lib_SystemGesture, ///< The LibSceSystemGesture implementation. Lib_SystemGesture, ///< The LibSceSystemGesture implementation.
Lib_GnmDriver, ///< The LibSceGnmDriver implementation. Lib_GnmDriver, ///< The LibSceGnmDriver implementation.
Lib_SystemService, ///< The LibSceSystemService implementation. Lib_SystemService, ///< The LibSceSystemService implementation.
Lib_UserService, ///< The LibSceUserService implementation. Lib_UserService, ///< The LibSceUserService implementation.
Lib_VideoOut, ///< The LibSceVideoOut implementation. Lib_VideoOut, ///< The LibSceVideoOut implementation.
Lib_CommonDlg, ///< The LibSceCommonDialog implementation. Lib_CommonDlg, ///< The LibSceCommonDialog implementation.
Lib_MsgDlg, ///< The LibSceMsgDialog implementation. Lib_MsgDlg, ///< The LibSceMsgDialog implementation.
Lib_AudioOut, ///< The LibSceAudioOut implementation. Lib_AudioOut, ///< The LibSceAudioOut implementation.
Lib_AudioIn, ///< The LibSceAudioIn implementation. Lib_AudioIn, ///< The LibSceAudioIn implementation.
Lib_Move, ///< The LibSceMove implementation. Lib_Move, ///< The LibSceMove implementation.
Lib_Net, ///< The LibSceNet implementation. Lib_Net, ///< The LibSceNet implementation.
Lib_NetCtl, ///< The LibSceNetCtl implementation. Lib_NetCtl, ///< The LibSceNetCtl implementation.
Lib_SaveData, ///< The LibSceSaveData implementation. Lib_SaveData, ///< The LibSceSaveData implementation.
Lib_SaveDataDialog, ///< The LibSceSaveDataDialog implementation. Lib_SaveDataDialog, ///< The LibSceSaveDataDialog implementation.
Lib_Ssl, ///< The LibSceSsl implementation. Lib_Ssl, ///< The LibSceSsl implementation.
Lib_Ssl2, ///< The LibSceSsl2 implementation. Lib_Ssl2, ///< The LibSceSsl2 implementation.
Lib_Http, ///< The LibSceHttp implementation. Lib_Http, ///< The LibSceHttp implementation.
Lib_Http2, ///< The LibSceHttp2 implementation. Lib_Http2, ///< The LibSceHttp2 implementation.
Lib_SysModule, ///< The LibSceSysModule implementation Lib_SysModule, ///< The LibSceSysModule implementation
Lib_NpCommon, ///< The LibSceNpCommon implementation Lib_NpCommon, ///< The LibSceNpCommon implementation
Lib_NpAuth, ///< The LibSceNpAuth implementation Lib_NpAuth, ///< The LibSceNpAuth implementation
Lib_NpManager, ///< The LibSceNpManager implementation Lib_NpManager, ///< The LibSceNpManager implementation
Lib_NpScore, ///< The LibSceNpScore implementation Lib_NpScore, ///< The LibSceNpScore implementation
Lib_NpTrophy, ///< The LibSceNpTrophy implementation Lib_NpTrophy, ///< The LibSceNpTrophy implementation
Lib_NpWebApi, ///< The LibSceWebApi implementation Lib_NpWebApi, ///< The LibSceWebApi implementation
Lib_NpProfileDialog, ///< The LibSceNpProfileDialog implementation Lib_NpProfileDialog, ///< The LibSceNpProfileDialog implementation
Lib_Screenshot, ///< The LibSceScreenshot implementation Lib_NpSnsFacebookDialog, ///< The LibSceNpSnsFacebookDialog implementation
Lib_LibCInternal, ///< The LibCInternal implementation. Lib_Screenshot, ///< The LibSceScreenshot implementation
Lib_AppContent, ///< The LibSceAppContent implementation. Lib_LibCInternal, ///< The LibCInternal implementation.
Lib_Rtc, ///< The LibSceRtc implementation. Lib_AppContent, ///< The LibSceAppContent implementation.
Lib_DiscMap, ///< The LibSceDiscMap implementation. Lib_Rtc, ///< The LibSceRtc implementation.
Lib_Png, ///< The LibScePng implementation. Lib_DiscMap, ///< The LibSceDiscMap implementation.
Lib_Jpeg, ///< The LibSceJpeg implementation. Lib_Png, ///< The LibScePng implementation.
Lib_PlayGo, ///< The LibScePlayGo implementation. Lib_Jpeg, ///< The LibSceJpeg implementation.
Lib_PlayGoDialog, ///< The LibScePlayGoDialog implementation. Lib_PlayGo, ///< The LibScePlayGo implementation.
Lib_Random, ///< The LibSceRandom implementation. Lib_PlayGoDialog, ///< The LibScePlayGoDialog implementation.
Lib_Usbd, ///< The LibSceUsbd implementation. Lib_Random, ///< The LibSceRandom implementation.
Lib_Ajm, ///< The LibSceAjm implementation. Lib_Usbd, ///< The LibSceUsbd implementation.
Lib_ErrorDialog, ///< The LibSceErrorDialog implementation. Lib_Ajm, ///< The LibSceAjm implementation.
Lib_ImeDialog, ///< The LibSceImeDialog implementation. Lib_ErrorDialog, ///< The LibSceErrorDialog implementation.
Lib_AvPlayer, ///< The LibSceAvPlayer implementation. Lib_ImeDialog, ///< The LibSceImeDialog implementation.
Lib_Ngs2, ///< The LibSceNgs2 implementation. Lib_AvPlayer, ///< The LibSceAvPlayer implementation.
Lib_Audio3d, ///< The LibSceAudio3d implementation. Lib_Ngs2, ///< The LibSceNgs2 implementation.
Lib_Ime, ///< The LibSceIme implementation Lib_Audio3d, ///< The LibSceAudio3d implementation.
Lib_GameLiveStreaming, ///< The LibSceGameLiveStreaming implementation Lib_Ime, ///< The LibSceIme implementation
Lib_Remoteplay, ///< The LibSceRemotePlay implementation Lib_GameLiveStreaming, ///< The LibSceGameLiveStreaming implementation
Lib_SharePlay, ///< The LibSceSharePlay implemenation Lib_Remoteplay, ///< The LibSceRemotePlay implementation
Lib_Fiber, ///< The LibSceFiber implementation. Lib_SharePlay, ///< The LibSceSharePlay implemenation
Lib_Vdec2, ///< The LibSceVideodec2 implementation. Lib_Fiber, ///< The LibSceFiber implementation.
Lib_Videodec, ///< The LibSceVideodec implementation. Lib_Vdec2, ///< The LibSceVideodec2 implementation.
Lib_Voice, ///< The LibSceVoice implementation. Lib_Videodec, ///< The LibSceVideodec implementation.
Lib_RazorCpu, ///< The LibRazorCpu implementation. Lib_Voice, ///< The LibSceVoice implementation.
Lib_Mouse, ///< The LibSceMouse implementation Lib_RazorCpu, ///< The LibRazorCpu implementation.
Lib_WebBrowserDialog, ///< The LibSceWebBrowserDialog implementation Lib_Mouse, ///< The LibSceMouse implementation
Lib_NpParty, ///< The LibSceNpParty implementation Lib_WebBrowserDialog, ///< The LibSceWebBrowserDialog implementation
Lib_Zlib, ///< The LibSceZlib implementation. Lib_NpParty, ///< The LibSceNpParty implementation
Lib_Hmd, ///< The LibSceHmd implementation. Lib_Zlib, ///< The LibSceZlib implementation.
Lib_HmdSetupDialog, ///< The LibSceHmdSetupDialog implementation. Lib_Hmd, ///< The LibSceHmd implementation.
Lib_SigninDialog, ///< The LibSigninDialog implementation. Lib_HmdSetupDialog, ///< The LibSceHmdSetupDialog implementation.
Lib_Camera, ///< The LibCamera implementation. Lib_SigninDialog, ///< The LibSigninDialog implementation.
Lib_CompanionHttpd, ///< The LibCompanionHttpd implementation. Lib_Camera, ///< The LibCamera implementation.
Lib_CompanionUtil, ///< The LibCompanionUtil implementation. Lib_CompanionHttpd, ///< The LibCompanionHttpd implementation.
Lib_VrTracker, ///< The LibSceVrTracker implementation. Lib_CompanionUtil, ///< The LibCompanionUtil implementation.
Frontend, ///< Emulator UI Lib_VrTracker, ///< The LibSceVrTracker implementation.
Render, ///< Video Core Frontend, ///< Emulator UI
Render_Vulkan, ///< Vulkan backend Render, ///< Video Core
Render_Recompiler, ///< Shader recompiler Render_Vulkan, ///< Vulkan backend
ImGui, ///< ImGui Render_Recompiler, ///< Shader recompiler
Loader, ///< ROM loader ImGui, ///< ImGui
Input, ///< Input emulation Loader, ///< ROM loader
Tty, ///< Debug output from emu Input, ///< Input emulation
Count ///< Total number of logging classes Tty, ///< Debug output from emu
Count ///< Total number of logging classes
}; };
} // namespace Common::Log } // namespace Common::Log

View File

@@ -37,6 +37,7 @@
#include "core/libraries/np/np_party.h" #include "core/libraries/np/np_party.h"
#include "core/libraries/np/np_profile_dialog.h" #include "core/libraries/np/np_profile_dialog.h"
#include "core/libraries/np/np_score.h" #include "core/libraries/np/np_score.h"
#include "core/libraries/np/np_sns_facebook_dialog.h"
#include "core/libraries/np/np_trophy.h" #include "core/libraries/np/np_trophy.h"
#include "core/libraries/np/np_web_api.h" #include "core/libraries/np/np_web_api.h"
#include "core/libraries/pad/pad.h" #include "core/libraries/pad/pad.h"
@@ -98,6 +99,7 @@ void InitHLELibs(Core::Loader::SymbolsResolver* sym) {
Libraries::Np::NpTrophy::RegisterLib(sym); Libraries::Np::NpTrophy::RegisterLib(sym);
Libraries::Np::NpWebApi::RegisterLib(sym); Libraries::Np::NpWebApi::RegisterLib(sym);
Libraries::Np::NpProfileDialog::RegisterLib(sym); Libraries::Np::NpProfileDialog::RegisterLib(sym);
Libraries::Np::NpSnsFacebookDialog::RegisterLib(sym);
Libraries::Np::NpAuth::RegisterLib(sym); Libraries::Np::NpAuth::RegisterLib(sym);
Libraries::Np::NpParty::RegisterLib(sym); Libraries::Np::NpParty::RegisterLib(sym);
Libraries::ScreenShot::RegisterLib(sym); Libraries::ScreenShot::RegisterLib(sym);

View File

@@ -0,0 +1,22 @@
// 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_sns_facebook_dialog.h"
#include "core/libraries/system/commondialog.h"
namespace Libraries::Np::NpSnsFacebookDialog {
Libraries::CommonDialog::Status PS4_SYSV_ABI sceNpSnsFacebookDialogUpdateStatus() {
LOG_ERROR(Lib_NpSnsFacebookDialog, "(STUBBED) called");
return Libraries::CommonDialog::Status::NONE;
}
void RegisterLib(Core::Loader::SymbolsResolver* sym) {
LIB_FUNCTION("fjV7C8H0Y8k", "libSceNpSnsFacebookDialog", 1, "libSceNpSnsFacebookDialog",
sceNpSnsFacebookDialogUpdateStatus);
};
} // namespace Libraries::Np::NpSnsFacebookDialog

View File

@@ -0,0 +1,15 @@
// 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::NpSnsFacebookDialog {
void RegisterLib(Core::Loader::SymbolsResolver* sym);
} // namespace Libraries::Np::NpSnsFacebookDialog