2015-01-18 23:20:28 +00:00
|
|
|
// 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_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() {
|
2015-01-30 18:56:49 +00:00
|
|
|
Register(FunctionTable);
|
2015-01-18 23:20:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|