summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/am.h
diff options
context:
space:
mode:
authorgerman77 <juangerman-13@hotmail.com>2021-09-10 17:11:02 +0200
committergerman77 <juangerman-13@hotmail.com>2021-09-10 19:24:50 +0200
commit9bddcdac693bcd4a10d4ced580af602d07c6d568 (patch)
tree8265ff09bac909ca98ff0aebd0e8fa80a6ab25d0 /src/core/hle/service/am/am.h
parenthid: Stub SetTouchScreenConfiguration (diff)
downloadyuzu-9bddcdac693bcd4a10d4ced580af602d07c6d568.tar
yuzu-9bddcdac693bcd4a10d4ced580af602d07c6d568.tar.gz
yuzu-9bddcdac693bcd4a10d4ced580af602d07c6d568.tar.bz2
yuzu-9bddcdac693bcd4a10d4ced580af602d07c6d568.tar.lz
yuzu-9bddcdac693bcd4a10d4ced580af602d07c6d568.tar.xz
yuzu-9bddcdac693bcd4a10d4ced580af602d07c6d568.tar.zst
yuzu-9bddcdac693bcd4a10d4ced580af602d07c6d568.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/am/am.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/service/am/am.h b/src/core/hle/service/am/am.h
index 184030a8e..c13aa5787 100644
--- a/src/core/hle/service/am/am.h
+++ b/src/core/hle/service/am/am.h
@@ -295,6 +295,7 @@ private:
void GetGpuErrorDetectedSystemEvent(Kernel::HLERequestContext& ctx);
void GetFriendInvitationStorageChannelEvent(Kernel::HLERequestContext& ctx);
void TryPopFromFriendInvitationStorageChannel(Kernel::HLERequestContext& ctx);
+ void GetNotificationStorageChannelEvent(Kernel::HLERequestContext& ctx);
void GetHealthWarningDisappearedSystemEvent(Kernel::HLERequestContext& ctx);
bool launch_popped_application_specific = false;
@@ -302,6 +303,7 @@ private:
s32 previous_program_index{-1};
Kernel::KEvent gpu_error_detected_event;
Kernel::KEvent friend_invitation_storage_channel_event;
+ Kernel::KEvent notification_storage_channel_event;
Kernel::KEvent health_warning_disappeared_system_event;
};