summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/fatal/fatal_p.cpp
blob: 4a81bb5e2f431d5b75feadb1e3bbf7c816b4e054 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#include "core/hle/service/fatal/fatal_p.h"

namespace Service::Fatal {

Fatal_P::Fatal_P(std::shared_ptr<Module> module_, Core::System& system_)
    : Interface(std::move(module_), system_, "fatal:p") {
    static const FunctionInfo functions[] = {
        {0, nullptr, "GetFatalEvent"},
        {10, nullptr, "GetFatalContext"},
    };
    RegisterHandlers(functions);
}

Fatal_P::~Fatal_P() = default;

} // namespace Service::Fatal