diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-11-05 19:15:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-05 19:15:07 +0100 |
commit | 626916e9a48a9bbc5f09968d89d378891ffb3809 (patch) | |
tree | eecdc0b962b101c851493102d1d0f49674573316 /src/core/hle | |
parent | Merge pull request #11965 from german77/color (diff) | |
parent | yuzu: Only store games in the recently played list (diff) | |
download | yuzu-626916e9a48a9bbc5f09968d89d378891ffb3809.tar yuzu-626916e9a48a9bbc5f09968d89d378891ffb3809.tar.gz yuzu-626916e9a48a9bbc5f09968d89d378891ffb3809.tar.bz2 yuzu-626916e9a48a9bbc5f09968d89d378891ffb3809.tar.lz yuzu-626916e9a48a9bbc5f09968d89d378891ffb3809.tar.xz yuzu-626916e9a48a9bbc5f09968d89d378891ffb3809.tar.zst yuzu-626916e9a48a9bbc5f09968d89d378891ffb3809.zip |
Diffstat (limited to 'src/core/hle')
-rw-r--r-- | src/core/hle/service/am/applets/applets.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/core/hle/service/am/applets/applets.h b/src/core/hle/service/am/applets/applets.h index f02bbc450..a6c322458 100644 --- a/src/core/hle/service/am/applets/applets.h +++ b/src/core/hle/service/am/applets/applets.h @@ -69,6 +69,30 @@ enum class AppletId : u32 { MyPage = 0x1A, }; +enum class AppletProgramId : u64 { + QLaunch = 0x0100000000001000ull, + Auth = 0x0100000000001001ull, + Cabinet = 0x0100000000001002ull, + Controller = 0x0100000000001003ull, + DataErase = 0x0100000000001004ull, + Error = 0x0100000000001005ull, + NetConnect = 0x0100000000001006ull, + ProfileSelect = 0x0100000000001007ull, + SoftwareKeyboard = 0x0100000000001008ull, + MiiEdit = 0x0100000000001009ull, + Web = 0x010000000000100Aull, + Shop = 0x010000000000100Bull, + OverlayDisplay = 0x01000000000100Cull, + PhotoViewer = 0x01000000000100Dull, + Settings = 0x010000000000100Eull, + OfflineWeb = 0x010000000000100Full, + LoginShare = 0x0100000000001010ull, + WebAuth = 0x0100000000001011ull, + Starter = 0x0100000000001012ull, + MyPage = 0x0100000000001013ull, + MaxProgramId = 0x0100000000001FFFull, +}; + enum class LibraryAppletMode : u32 { AllForeground = 0, Background = 1, |