citra-canary/src/core/hle/service/err_f.h

38 lines
730 B
C
Raw Normal View History

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"
namespace Kernel {
class HLERequestContext;
}
namespace Service {
namespace ERR {
2014-11-02 03:06:13 +00:00
/// Interface to "err:f" service
class ERR_F final : public ServiceFramework<ERR_F> {
2014-12-21 19:52:10 +00:00
public:
ERR_F();
~ERR_F();
2014-12-21 19:52:10 +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);
2014-12-21 19:52:10 +00:00
};
void InstallInterfaces();
} // namespace ERR
} // namespace Service