summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/apt/apt.h
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2017-07-22 19:33:03 +0200
committerSubv <subv2112@gmail.com>2017-08-07 21:53:58 +0200
commit73fba0de46aef0b18ef0ef5221cc23a60be4cb6c (patch)
treea8e456efffcda56c3b1812d6ee31a85026101633 /src/core/hle/service/apt/apt.h
parentMerge pull request #2860 from anodium/patch-1 (diff)
downloadyuzu-73fba0de46aef0b18ef0ef5221cc23a60be4cb6c.tar
yuzu-73fba0de46aef0b18ef0ef5221cc23a60be4cb6c.tar.gz
yuzu-73fba0de46aef0b18ef0ef5221cc23a60be4cb6c.tar.bz2
yuzu-73fba0de46aef0b18ef0ef5221cc23a60be4cb6c.tar.lz
yuzu-73fba0de46aef0b18ef0ef5221cc23a60be4cb6c.tar.xz
yuzu-73fba0de46aef0b18ef0ef5221cc23a60be4cb6c.tar.zst
yuzu-73fba0de46aef0b18ef0ef5221cc23a60be4cb6c.zip
Diffstat (limited to 'src/core/hle/service/apt/apt.h')
-rw-r--r--src/core/hle/service/apt/apt.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/core/hle/service/apt/apt.h b/src/core/hle/service/apt/apt.h
index 106754853..96b28b438 100644
--- a/src/core/hle/service/apt/apt.h
+++ b/src/core/hle/service/apt/apt.h
@@ -72,6 +72,8 @@ enum class SignalType : u32 {
/// App Id's used by APT functions
enum class AppletId : u32 {
+ None = 0,
+ AnySystemApplet = 0x100,
HomeMenu = 0x101,
AlternateMenu = 0x103,
Camera = 0x110,
@@ -83,6 +85,7 @@ enum class AppletId : u32 {
Miiverse = 0x117,
MiiversePost = 0x118,
AmiiboSettings = 0x119,
+ AnySysLibraryApplet = 0x200,
SoftwareKeyboard1 = 0x201,
Ed1 = 0x202,
PnoteApp = 0x204,
@@ -119,8 +122,9 @@ enum class ScreencapPostPermission : u32 {
namespace ErrCodes {
enum {
ParameterPresent = 2,
+ InvalidAppletSlot = 4,
};
-}
+} // namespace ErrCodes
/// Send a parameter to the currently-running application, which will read it via ReceiveParameter
void SendParameter(const MessageParameter& parameter);