yuzu/src/core/hle/service/fatal/fatal.h

28 lines
683 B
C
Raw Normal View History

2018-03-20 14:55:20 +01:00
// Copyright 2018 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include "core/hle/service/service.h"
namespace Service::Fatal {
2018-03-20 14:55:20 +01:00
class Module final {
public:
class Interface : public ServiceFramework<Interface> {
public:
explicit Interface(std::shared_ptr<Module> module, const char* name);
2018-03-20 14:55:20 +01:00
2018-05-18 23:30:56 +02:00
void ThrowFatalWithPolicy(Kernel::HLERequestContext& ctx);
void ThrowFatalWithCpuContext(Kernel::HLERequestContext& ctx);
2018-03-20 14:55:20 +01:00
protected:
std::shared_ptr<Module> module;
};
};
void InstallInterfaces(SM::ServiceManager& service_manager);
} // namespace Service::Fatal