summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/apt/apt.h
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2017-07-21 20:19:55 +0200
committerSubv <subv2112@gmail.com>2017-07-21 21:59:26 +0200
commit68596a706860f37de876ca070f9de6e664df0d05 (patch)
tree32f3f28f25a32f19adca39034f021ec154eb68b1 /src/core/hle/service/apt/apt.h
parentServices/APT: Reset the APT parameter inside CancelParameter if the conditions are met. (diff)
downloadyuzu-68596a706860f37de876ca070f9de6e664df0d05.tar
yuzu-68596a706860f37de876ca070f9de6e664df0d05.tar.gz
yuzu-68596a706860f37de876ca070f9de6e664df0d05.tar.bz2
yuzu-68596a706860f37de876ca070f9de6e664df0d05.tar.lz
yuzu-68596a706860f37de876ca070f9de6e664df0d05.tar.xz
yuzu-68596a706860f37de876ca070f9de6e664df0d05.tar.zst
yuzu-68596a706860f37de876ca070f9de6e664df0d05.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/apt/apt.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/hle/service/apt/apt.h b/src/core/hle/service/apt/apt.h
index ee80926d2..106754853 100644
--- a/src/core/hle/service/apt/apt.h
+++ b/src/core/hle/service/apt/apt.h
@@ -116,6 +116,12 @@ enum class ScreencapPostPermission : u32 {
DisableScreenshotPostingToMiiverse = 3
};
+namespace ErrCodes {
+enum {
+ ParameterPresent = 2,
+};
+}
+
/// Send a parameter to the currently-running application, which will read it via ReceiveParameter
void SendParameter(const MessageParameter& parameter);