am: Stub TryPopFromFriendInvitationStorageChannel
Used by Family Feud
This commit is contained in:
parent
a4526c4e1a
commit
99dcf7da21
|
@ -1213,7 +1213,7 @@ IApplicationFunctions::IApplicationFunctions(Core::System& system_)
|
||||||
{124, nullptr, "EnableApplicationAllThreadDumpOnCrash"},
|
{124, nullptr, "EnableApplicationAllThreadDumpOnCrash"},
|
||||||
{130, &IApplicationFunctions::GetGpuErrorDetectedSystemEvent, "GetGpuErrorDetectedSystemEvent"},
|
{130, &IApplicationFunctions::GetGpuErrorDetectedSystemEvent, "GetGpuErrorDetectedSystemEvent"},
|
||||||
{140, &IApplicationFunctions::GetFriendInvitationStorageChannelEvent, "GetFriendInvitationStorageChannelEvent"},
|
{140, &IApplicationFunctions::GetFriendInvitationStorageChannelEvent, "GetFriendInvitationStorageChannelEvent"},
|
||||||
{141, nullptr, "TryPopFromFriendInvitationStorageChannel"},
|
{141, &IApplicationFunctions::TryPopFromFriendInvitationStorageChannel, "TryPopFromFriendInvitationStorageChannel"},
|
||||||
{150, nullptr, "GetNotificationStorageChannelEvent"},
|
{150, nullptr, "GetNotificationStorageChannelEvent"},
|
||||||
{151, nullptr, "TryPopFromNotificationStorageChannel"},
|
{151, nullptr, "TryPopFromNotificationStorageChannel"},
|
||||||
{160, nullptr, "GetHealthWarningDisappearedSystemEvent"},
|
{160, nullptr, "GetHealthWarningDisappearedSystemEvent"},
|
||||||
|
@ -1631,6 +1631,14 @@ void IApplicationFunctions::GetFriendInvitationStorageChannelEvent(Kernel::HLERe
|
||||||
rb.PushCopyObjects(friend_invitation_storage_channel_event.readable);
|
rb.PushCopyObjects(friend_invitation_storage_channel_event.readable);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void IApplicationFunctions::TryPopFromFriendInvitationStorageChannel(
|
||||||
|
Kernel::HLERequestContext& ctx) {
|
||||||
|
LOG_WARNING(Service_AM, "(STUBBED) called");
|
||||||
|
|
||||||
|
IPC::ResponseBuilder rb{ctx, 2};
|
||||||
|
rb.Push(ERR_NO_DATA_IN_CHANNEL);
|
||||||
|
}
|
||||||
|
|
||||||
void InstallInterfaces(SM::ServiceManager& service_manager, NVFlinger::NVFlinger& nvflinger,
|
void InstallInterfaces(SM::ServiceManager& service_manager, NVFlinger::NVFlinger& nvflinger,
|
||||||
Core::System& system) {
|
Core::System& system) {
|
||||||
auto message_queue = std::make_shared<AppletMessageQueue>(system.Kernel());
|
auto message_queue = std::make_shared<AppletMessageQueue>(system.Kernel());
|
||||||
|
|
|
@ -288,6 +288,7 @@ private:
|
||||||
void GetPreviousProgramIndex(Kernel::HLERequestContext& ctx);
|
void GetPreviousProgramIndex(Kernel::HLERequestContext& ctx);
|
||||||
void GetGpuErrorDetectedSystemEvent(Kernel::HLERequestContext& ctx);
|
void GetGpuErrorDetectedSystemEvent(Kernel::HLERequestContext& ctx);
|
||||||
void GetFriendInvitationStorageChannelEvent(Kernel::HLERequestContext& ctx);
|
void GetFriendInvitationStorageChannelEvent(Kernel::HLERequestContext& ctx);
|
||||||
|
void TryPopFromFriendInvitationStorageChannel(Kernel::HLERequestContext& ctx);
|
||||||
|
|
||||||
bool launch_popped_application_specific = false;
|
bool launch_popped_application_specific = false;
|
||||||
bool launch_popped_account_preselect = false;
|
bool launch_popped_account_preselect = false;
|
||||||
|
|
Loading…
Reference in New Issue