summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ptm/ptm_gets.cpp
blob: adf11da4705954e8f21f3e10322d1c231ac9503b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2016 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include "core/hle/service/ptm/ptm_gets.h"

namespace Service {
namespace PTM {

const Interface::FunctionInfo FunctionTable[] = {
    {0x04010000, nullptr, "GetSystemTime"},
};

PTM_Gets::PTM_Gets() {
    Register(FunctionTable);
}

} // namespace PTM
} // namespace Service