summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/apt/apt.h
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2015-07-24 01:52:57 +0200
committerSubv <subv2112@gmail.com>2015-07-24 03:46:11 +0200
commitce31184557361f3905e81e2ab948de976c51c7e4 (patch)
tree0e0c8d32173254944e1db376457cd53e2b926c9e /src/core/hle/service/apt/apt.h
parentMerge pull request #977 from yuriks/glenable-tex2d (diff)
downloadyuzu-ce31184557361f3905e81e2ab948de976c51c7e4.tar
yuzu-ce31184557361f3905e81e2ab948de976c51c7e4.tar.gz
yuzu-ce31184557361f3905e81e2ab948de976c51c7e4.tar.bz2
yuzu-ce31184557361f3905e81e2ab948de976c51c7e4.tar.lz
yuzu-ce31184557361f3905e81e2ab948de976c51c7e4.tar.xz
yuzu-ce31184557361f3905e81e2ab948de976c51c7e4.tar.zst
yuzu-ce31184557361f3905e81e2ab948de976c51c7e4.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/apt/apt.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/core/hle/service/apt/apt.h b/src/core/hle/service/apt/apt.h
index 72972d05b..563068d5a 100644
--- a/src/core/hle/service/apt/apt.h
+++ b/src/core/hle/service/apt/apt.h
@@ -62,6 +62,7 @@ enum class AppletId : u32 {
Extrapad = 0x208,
Memolib = 0x209,
Application = 0x300,
+ AnyLibraryApplet = 0x400,
SoftwareKeyboard2 = 0x401,
};
@@ -96,8 +97,26 @@ void GetSharedFont(Service::Interface* self);
*/
void NotifyToWait(Service::Interface* self);
+/**
+ * APT::GetLockHandle service function
+ * Inputs:
+ * 1 : Applet attributes
+ * Outputs:
+ * 1 : Result of function, 0 on success, otherwise error code
+ * 2 : Applet attributes
+ * 3 : Power button state
+ * 4 : IPC handle descriptor
+ * 5 : APT mutex handle
+ */
void GetLockHandle(Service::Interface* self);
+/**
+ * APT::Enable service function
+ * Inputs:
+ * 1 : Applet attributes
+ * Outputs:
+ * 1 : Result of function, 0 on success, otherwise error code
+ */
void Enable(Service::Interface* self);
/**