2014-11-02 03:06:13 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-11-02 03:06:13 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
|
2018-10-05 14:59:43 +00:00
|
|
|
namespace Core {
|
|
|
|
class System;
|
|
|
|
}
|
|
|
|
|
2017-12-04 19:03:11 +00:00
|
|
|
namespace Kernel {
|
|
|
|
class HLERequestContext;
|
|
|
|
}
|
|
|
|
|
2018-09-22 12:23:08 +00:00
|
|
|
namespace Service::ERR {
|
2014-11-02 03:06:13 +00:00
|
|
|
|
2017-12-04 19:03:11 +00:00
|
|
|
/// Interface to "err:f" service
|
|
|
|
class ERR_F final : public ServiceFramework<ERR_F> {
|
2014-12-21 19:52:10 +00:00
|
|
|
public:
|
2018-10-05 14:59:43 +00:00
|
|
|
explicit ERR_F(Core::System& system);
|
2017-12-04 19:03:11 +00:00
|
|
|
~ERR_F();
|
2014-12-21 19:52:10 +00:00
|
|
|
|
2017-12-04 19:03:11 +00:00
|
|
|
private:
|
|
|
|
/* ThrowFatalError function
|
|
|
|
* Inputs:
|
|
|
|
* 0 : Header code [0x00010800]
|
|
|
|
* 1-32 : FatalErrInfo
|
|
|
|
* Outputs:
|
|
|
|
* 0 : Header code
|
|
|
|
* 1 : Result code
|
|
|
|
*/
|
|
|
|
void ThrowFatalError(Kernel::HLERequestContext& ctx);
|
2018-10-05 14:59:43 +00:00
|
|
|
|
|
|
|
Core::System& system;
|
2014-12-21 19:52:10 +00:00
|
|
|
};
|
2014-11-19 08:49:13 +00:00
|
|
|
|
2018-10-05 14:59:43 +00:00
|
|
|
void InstallInterfaces(Core::System& system);
|
2017-12-04 19:03:11 +00:00
|
|
|
|
2018-09-22 12:23:08 +00:00
|
|
|
} // namespace Service::ERR
|