mirror of
https://github.com/skyline-emu/skyline.git
synced 2024-11-22 20:09:17 +01:00
Stub DeclareOpenOnlinePlaySession and DeclareCloseOnlinePlaySession
This commit is contained in:
parent
150c1370c2
commit
18e6a6c53c
@ -16,6 +16,14 @@ namespace skyline::service::friends {
|
||||
return {};
|
||||
}
|
||||
|
||||
Result IFriendService::DeclareOpenOnlinePlaySession(type::KSession &session, ipc::IpcRequest &request, ipc::IpcResponse &response) {
|
||||
return {};
|
||||
}
|
||||
|
||||
Result IFriendService::DeclareCloseOnlinePlaySession(type::KSession &session, ipc::IpcRequest &request, ipc::IpcResponse &response) {
|
||||
return {};
|
||||
}
|
||||
|
||||
Result IFriendService::UpdateUserPresence(type::KSession &session, ipc::IpcRequest &request, ipc::IpcResponse &response) {
|
||||
return {};
|
||||
}
|
||||
|
@ -18,11 +18,17 @@ namespace skyline::service::friends {
|
||||
|
||||
Result GetBlockedUserListIds(type::KSession &session, ipc::IpcRequest &request, ipc::IpcResponse &response);
|
||||
|
||||
Result DeclareOpenOnlinePlaySession(type::KSession &session, ipc::IpcRequest &request, ipc::IpcResponse &response);
|
||||
|
||||
Result DeclareCloseOnlinePlaySession(type::KSession &session, ipc::IpcRequest &request, ipc::IpcResponse &response);
|
||||
|
||||
Result UpdateUserPresence(type::KSession &session, ipc::IpcRequest &request, ipc::IpcResponse &response);
|
||||
|
||||
SERVICE_DECL(
|
||||
SFUNC(0x2775, IFriendService, GetFriendList),
|
||||
SFUNC(0x28A0, IFriendService, GetBlockedUserListIds),
|
||||
SFUNC(0x2968, IFriendService, DeclareOpenOnlinePlaySession),
|
||||
SFUNC(0x2969, IFriendService, DeclareCloseOnlinePlaySession),
|
||||
SFUNC(0x2972, IFriendService, UpdateUserPresence)
|
||||
)
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user