mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2026-04-29 23:41:19 -06:00
* some rework on netctl calls * added libs stubs using from RE6 * added ORBIS_NET_CTL_INFO_IP_ADDRESS case in sceNetCtlGetInfo * added sceNetInetPton * some dummy functions and change some functions to debug level * clang format fix * fix for sceNetInetPton * posix OS fix? * linux + macOS fixes? * fix? * sceSharePlayGetCurrentConnectionInfo
54 lines
1.9 KiB
C++
54 lines
1.9 KiB
C++
// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <core/libraries/np_manager/np_manager.h>
|
|
#include "common/types.h"
|
|
|
|
namespace Core::Loader {
|
|
class SymbolsResolver;
|
|
}
|
|
|
|
namespace Libraries::SharePlay {
|
|
|
|
constexpr int ORBIS_SHARE_PLAY_CONNECTION_STATUS_DORMANT = 0x00;
|
|
constexpr int ORBIS_SHARE_PLAY_CONNECTION_STATUS_READY = 0x01;
|
|
constexpr int ORBIS_SHARE_PLAY_CONNECTION_STATUS_CONNECTED = 0x02;
|
|
|
|
struct OrbisSharePlayConnectionInfo {
|
|
int status;
|
|
int mode;
|
|
Libraries::NpManager::OrbisNpOnlineId hostOnlineId;
|
|
Libraries::NpManager::OrbisNpOnlineId visitorOnlineId;
|
|
s32 hostUserId;
|
|
s32 visitorUserId;
|
|
};
|
|
|
|
int PS4_SYSV_ABI sceSharePlayCrashDaemon();
|
|
int PS4_SYSV_ABI sceSharePlayGetCurrentConnectionInfo(OrbisSharePlayConnectionInfo* pInfo);
|
|
int PS4_SYSV_ABI sceSharePlayGetCurrentConnectionInfoA();
|
|
int PS4_SYSV_ABI sceSharePlayGetCurrentInfo();
|
|
int PS4_SYSV_ABI sceSharePlayGetEvent();
|
|
int PS4_SYSV_ABI sceSharePlayInitialize();
|
|
int PS4_SYSV_ABI sceSharePlayNotifyDialogOpen();
|
|
int PS4_SYSV_ABI sceSharePlayNotifyForceCloseForCdlg();
|
|
int PS4_SYSV_ABI sceSharePlayNotifyOpenQuickMenu();
|
|
int PS4_SYSV_ABI sceSharePlayResumeScreenForCdlg();
|
|
int PS4_SYSV_ABI sceSharePlayServerLock();
|
|
int PS4_SYSV_ABI sceSharePlayServerUnLock();
|
|
int PS4_SYSV_ABI sceSharePlaySetMode();
|
|
int PS4_SYSV_ABI sceSharePlaySetProhibition();
|
|
int PS4_SYSV_ABI sceSharePlaySetProhibitionModeWithAppId();
|
|
int PS4_SYSV_ABI sceSharePlayStartStandby();
|
|
int PS4_SYSV_ABI sceSharePlayStartStreaming();
|
|
int PS4_SYSV_ABI sceSharePlayStopStandby();
|
|
int PS4_SYSV_ABI sceSharePlayStopStreaming();
|
|
int PS4_SYSV_ABI sceSharePlayTerminate();
|
|
int PS4_SYSV_ABI Func_2E93C0EA6A6B67C4();
|
|
int PS4_SYSV_ABI Func_C1C236728D88E177();
|
|
int PS4_SYSV_ABI Func_E9E80C474781F115();
|
|
int PS4_SYSV_ABI Func_F3DD6199DA15ED44();
|
|
|
|
void RegisterlibSceSharePlay(Core::Loader::SymbolsResolver* sym);
|
|
} // namespace Libraries::SharePlay
|