summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/apt/apt_a.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-03-05 03:27:24 +0100
committerbunnei <bunneidev@gmail.com>2015-03-05 03:27:24 +0100
commit8e4e28aacb38b4f80c3ae80167841f4e451f6ef5 (patch)
treecd4efbdfb0e01e9e2b424f17339f11873c90485c /src/core/hle/service/apt/apt_a.cpp
parentMerge pull request #625 from lioncash/warn (diff)
parentServices: Moved the PTM and APT services to their own folder (diff)
downloadyuzu-8e4e28aacb38b4f80c3ae80167841f4e451f6ef5.tar
yuzu-8e4e28aacb38b4f80c3ae80167841f4e451f6ef5.tar.gz
yuzu-8e4e28aacb38b4f80c3ae80167841f4e451f6ef5.tar.bz2
yuzu-8e4e28aacb38b4f80c3ae80167841f4e451f6ef5.tar.lz
yuzu-8e4e28aacb38b4f80c3ae80167841f4e451f6ef5.tar.xz
yuzu-8e4e28aacb38b4f80c3ae80167841f4e451f6ef5.tar.zst
yuzu-8e4e28aacb38b4f80c3ae80167841f4e451f6ef5.zip
Diffstat (limited to 'src/core/hle/service/apt/apt_a.cpp')
-rw-r--r--src/core/hle/service/apt/apt_a.cpp33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/core/hle/service/apt/apt_a.cpp b/src/core/hle/service/apt/apt_a.cpp
new file mode 100644
index 000000000..dbe5c1d87
--- /dev/null
+++ b/src/core/hle/service/apt/apt_a.cpp
@@ -0,0 +1,33 @@
+// Copyright 2014 Citra Emulator Project
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#include "core/hle/hle.h"
+#include "core/hle/service/apt/apt.h"
+#include "core/hle/service/apt/apt_a.h"
+
+namespace Service {
+namespace APT {
+
+const Interface::FunctionInfo FunctionTable[] = {
+ {0x00010040, GetLockHandle, "GetLockHandle?"},
+ {0x00020080, Initialize, "Initialize?"},
+ {0x00030040, nullptr, "Enable?"},
+ {0x00040040, nullptr, "Finalize?"},
+ {0x00050040, nullptr, "GetAppletManInfo?"},
+ {0x00060040, nullptr, "GetAppletInfo?"},
+ {0x000D0080, ReceiveParameter, "ReceiveParameter?"},
+ {0x000E0080, GlanceParameter, "GlanceParameter?"},
+ {0x003B0040, nullptr, "CancelLibraryApplet?"},
+ {0x00430040, nullptr, "NotifyToWait?"},
+ {0x00440000, GetSharedFont, "GetSharedFont?"},
+ {0x004B00C2, nullptr, "AppletUtility?"},
+ {0x00550040, nullptr, "WriteInputToNsState?"},
+};
+
+APT_A_Interface::APT_A_Interface() {
+ Register(FunctionTable);
+}
+
+} // namespace APT
+} // namespace Service