summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/apt_a.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2014-12-26 04:51:38 +0100
committerbunnei <bunneidev@gmail.com>2014-12-26 04:51:38 +0100
commit5d2ee78d8fbb25c8496654026b27f4238040a4da (patch)
treeee6d5ad562aa39696d547eaf83064957becff649 /src/core/hle/service/apt_a.cpp
parentMerge pull request #343 from lioncash/smmla (diff)
parentMore services & small clean ups (diff)
downloadyuzu-5d2ee78d8fbb25c8496654026b27f4238040a4da.tar
yuzu-5d2ee78d8fbb25c8496654026b27f4238040a4da.tar.gz
yuzu-5d2ee78d8fbb25c8496654026b27f4238040a4da.tar.bz2
yuzu-5d2ee78d8fbb25c8496654026b27f4238040a4da.tar.lz
yuzu-5d2ee78d8fbb25c8496654026b27f4238040a4da.tar.xz
yuzu-5d2ee78d8fbb25c8496654026b27f4238040a4da.tar.zst
yuzu-5d2ee78d8fbb25c8496654026b27f4238040a4da.zip
Diffstat (limited to 'src/core/hle/service/apt_a.cpp')
-rw-r--r--src/core/hle/service/apt_a.cpp34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/core/hle/service/apt_a.cpp b/src/core/hle/service/apt_a.cpp
new file mode 100644
index 000000000..dcf5ec4fe
--- /dev/null
+++ b/src/core/hle/service/apt_a.cpp
@@ -0,0 +1,34 @@
+// Copyright 2014 Citra Emulator Project
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#include "common/log.h"
+#include "core/hle/hle.h"
+#include "core/hle/service/apt_a.h"
+
+////////////////////////////////////////////////////////////////////////////////////////////////////
+// Namespace APT_A
+
+namespace APT_A {
+
+const Interface::FunctionInfo FunctionTable[] = {
+ {0x00010040, nullptr, "GetLockHandle?"},
+ {0x00020080, nullptr, "Initialize?"},
+ {0x00030040, nullptr, "Enable?"},
+ {0x00040040, nullptr, "Finalize?"},
+ {0x00050040, nullptr, "GetAppletManInfo?"},
+ {0x00060040, nullptr, "GetAppletInfo?"},
+ {0x003B0040, nullptr, "CancelLibraryApplet?"},
+ {0x00430040, nullptr, "NotifyToWait?"},
+ {0x004B00C2, nullptr, "AppletUtility?"},
+ {0x00550040, nullptr, "WriteInputToNsState?"},
+};
+
+////////////////////////////////////////////////////////////////////////////////////////////////////
+// Interface class
+
+Interface::Interface() {
+ Register(FunctionTable, ARRAY_SIZE(FunctionTable));
+}
+
+} // namespace