aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/ptm/ptm_play.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-03-04 21:27:24 -0500
committerbunnei <bunneidev@gmail.com>2015-03-04 21:27:24 -0500
commit8e4e28aacb38b4f80c3ae80167841f4e451f6ef5 (patch)
treecd4efbdfb0e01e9e2b424f17339f11873c90485c /src/core/hle/service/ptm/ptm_play.cpp
parent8fc8c51118a190622728369f267877402f7bfb98 (diff)
parent83a8975cb89b908b4737d647a210c19775f25ed7 (diff)
Merge pull request #615 from Subv/services
Services: Moved the PTM and APT services to their own folder
Diffstat (limited to 'src/core/hle/service/ptm/ptm_play.cpp')
-rw-r--r--src/core/hle/service/ptm/ptm_play.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/core/hle/service/ptm/ptm_play.cpp b/src/core/hle/service/ptm/ptm_play.cpp
new file mode 100644
index 000000000..8e8ae8558
--- /dev/null
+++ b/src/core/hle/service/ptm/ptm_play.cpp
@@ -0,0 +1,23 @@
+// Copyright 2015 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/ptm/ptm_play.h"
+
+namespace Service {
+namespace PTM {
+
+const Interface::FunctionInfo FunctionTable[] = {
+ { 0x08070082, nullptr, "GetPlayHistory" },
+ { 0x08080000, nullptr, "GetPlayHistoryStart" },
+ { 0x08090000, nullptr, "GetPlayHistoryLength" },
+ { 0x080B0080, nullptr, "CalcPlayHistoryStart" },
+};
+
+PTM_Play_Interface::PTM_Play_Interface() {
+ Register(FunctionTable);
+}
+
+} // namespace PTM
+} // namespace Service \ No newline at end of file