summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/am.h
diff options
context:
space:
mode:
authorMat M <mathew1800@gmail.com>2020-04-30 19:38:35 +0200
committerGitHub <noreply@github.com>2020-04-30 19:38:35 +0200
commitecf1f2e05457d5c1ea435af399ac3eb341a16ee2 (patch)
tree1dfa11ece998a9cf507bf9860e0cd290cbe8b1a2 /src/core/hle/service/am/am.h
parentMerge pull request #3835 from ogniK5377/GetFreeSpaceSize-GetTotalSpaceSize (diff)
parentam: GetFriendInvitationStorageChannelEvent (diff)
downloadyuzu-ecf1f2e05457d5c1ea435af399ac3eb341a16ee2.tar
yuzu-ecf1f2e05457d5c1ea435af399ac3eb341a16ee2.tar.gz
yuzu-ecf1f2e05457d5c1ea435af399ac3eb341a16ee2.tar.bz2
yuzu-ecf1f2e05457d5c1ea435af399ac3eb341a16ee2.tar.lz
yuzu-ecf1f2e05457d5c1ea435af399ac3eb341a16ee2.tar.xz
yuzu-ecf1f2e05457d5c1ea435af399ac3eb341a16ee2.tar.zst
yuzu-ecf1f2e05457d5c1ea435af399ac3eb341a16ee2.zip
Diffstat (limited to 'src/core/hle/service/am/am.h')
-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 53cfce10f..55afe2b63 100644
--- a/src/core/hle/service/am/am.h
+++ b/src/core/hle/service/am/am.h
@@ -280,10 +280,12 @@ private:
void QueryApplicationPlayStatistics(Kernel::HLERequestContext& ctx);
void QueryApplicationPlayStatisticsByUid(Kernel::HLERequestContext& ctx);
void GetGpuErrorDetectedSystemEvent(Kernel::HLERequestContext& ctx);
+ void GetFriendInvitationStorageChannelEvent(Kernel::HLERequestContext& ctx);
bool launch_popped_application_specific = false;
bool launch_popped_account_preselect = false;
Kernel::EventPair gpu_error_detected_event;
+ Kernel::EventPair friend_invitation_storage_channel_event;
Core::System& system;
};