aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service/ptm/ptm_play.cpp
diff options
context:
space:
mode:
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 00000000..8e8ae855
--- /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