|
|
@ -38,7 +38,7 @@ public: |
|
|
{10600, nullptr, "DeclareOpenOnlinePlaySession"}, |
|
|
{10600, nullptr, "DeclareOpenOnlinePlaySession"}, |
|
|
{10601, &IFriendService::DeclareCloseOnlinePlaySession, "DeclareCloseOnlinePlaySession"}, |
|
|
{10601, &IFriendService::DeclareCloseOnlinePlaySession, "DeclareCloseOnlinePlaySession"}, |
|
|
{10610, &IFriendService::UpdateUserPresence, "UpdateUserPresence"}, |
|
|
{10610, &IFriendService::UpdateUserPresence, "UpdateUserPresence"}, |
|
|
{10700, nullptr, "GetPlayHistoryRegistrationKey"}, |
|
|
|
|
|
|
|
|
{10700, &IFriendService::GetPlayHistoryRegistrationKey, "GetPlayHistoryRegistrationKey"}, |
|
|
{10701, nullptr, "GetPlayHistoryRegistrationKeyWithNetworkServiceAccountId"}, |
|
|
{10701, nullptr, "GetPlayHistoryRegistrationKeyWithNetworkServiceAccountId"}, |
|
|
{10702, nullptr, "AddPlayHistory"}, |
|
|
{10702, nullptr, "AddPlayHistory"}, |
|
|
{11000, nullptr, "GetProfileImageUrl"}, |
|
|
{11000, nullptr, "GetProfileImageUrl"}, |
|
|
@ -153,6 +153,18 @@ private: |
|
|
rb.Push(RESULT_SUCCESS); |
|
|
rb.Push(RESULT_SUCCESS); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void GetPlayHistoryRegistrationKey(Kernel::HLERequestContext& ctx) { |
|
|
|
|
|
IPC::RequestParser rp{ctx}; |
|
|
|
|
|
const auto local_play = rp.Pop<bool>(); |
|
|
|
|
|
const auto uuid = rp.PopRaw<Common::UUID>(); |
|
|
|
|
|
|
|
|
|
|
|
LOG_WARNING(Service_Friend, "(STUBBED) called local_play={} uuid={}", local_play, |
|
|
|
|
|
uuid.Format()); |
|
|
|
|
|
|
|
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2}; |
|
|
|
|
|
rb.Push(RESULT_SUCCESS); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
void GetFriendList(Kernel::HLERequestContext& ctx) { |
|
|
void GetFriendList(Kernel::HLERequestContext& ctx) { |
|
|
IPC::RequestParser rp{ctx}; |
|
|
IPC::RequestParser rp{ctx}; |
|
|
const auto friend_offset = rp.Pop<u32>(); |
|
|
const auto friend_offset = rp.Pop<u32>(); |
|
|
|