blob: 0fea24b686fe07de4562c1f242d920aa565d51a1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Copyright 2016 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include "common/archives.h"
#include "core/hle/service/ptm/ptm_sets.h"
SERIALIZE_EXPORT_IMPL(Service::PTM::PTM_Sets)
namespace Service::PTM {
PTM_Sets::PTM_Sets(std::shared_ptr<Module> ptm) : Module::Interface(std::move(ptm), "ptm:sets", 1) {
static const FunctionInfo functions[] = {
// Note that this service does not have access to ptm:u's common commands
// clang-format off
{0x0001, nullptr, "SetSystemTime"},
// clang-format on
};
RegisterHandlers(functions);
}
} // namespace Service::PTM
|