aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service/ptm_play.cpp
blob: b357057fdb42d4844eab4aa3a33a978e2d313681 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright 2015 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/ptm_play.h"

////////////////////////////////////////////////////////////////////////////////////////////////////
// Namespace PTM_PLAY

namespace PTM_PLAY {

const Interface::FunctionInfo FunctionTable[] = {
    { 0x08070082, nullptr,               "GetPlayHistory" },
    { 0x08080000, nullptr,               "GetPlayHistoryStart" },
    { 0x08090000, nullptr,               "GetPlayHistoryLength" },
    { 0x080B0080, nullptr,               "CalcPlayHistoryStart" },
};

////////////////////////////////////////////////////////////////////////////////////////////////////
// Interface class

Interface::Interface() {
    Register(FunctionTable);
}
    
} // namespace