Lime3DS/src/core/hle/service/err_f.h

55 lines
1.2 KiB
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 Core {
class System;
}
namespace Kernel {
class HLERequestContext;
}
namespace Service::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:
explicit ERR_F(Core::System& system);
~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);
Core::System& system;
2019-12-26 18:14:22 +00:00
template <class Archive>
2019-12-27 21:07:29 +00:00
void serialize(Archive& ar, const unsigned int) {
ar& boost::serialization::base_object<Kernel::SessionRequestHandler>(*this);
2019-12-26 18:14:22 +00:00
}
friend class boost::serialization::access;
2014-12-21 19:52:10 +00:00
};
void InstallInterfaces(Core::System& system);
} // namespace Service::ERR
2019-12-26 18:14:22 +00:00
BOOST_CLASS_EXPORT_KEY(Service::ERR::ERR_F)
namespace boost::serialization {
2019-12-27 21:07:29 +00:00
template <class Archive>
void load_construct_data(Archive& ar, Service::ERR::ERR_F* t, const unsigned int);
2019-12-26 18:14:22 +00:00
}