mirror of
https://github.com/starr-dusT/yuzu-mainline
synced 2024-03-05 21:12:25 -08:00
service: fatal: Add function table
This commit is contained in:
parent
2535e9d1ec
commit
1584de951a
@ -6,7 +6,13 @@
|
|||||||
namespace Service::Fatal {
|
namespace Service::Fatal {
|
||||||
|
|
||||||
Fatal_P::Fatal_P(std::shared_ptr<Module> module_, Core::System& system_)
|
Fatal_P::Fatal_P(std::shared_ptr<Module> module_, Core::System& system_)
|
||||||
: Interface(std::move(module_), system_, "fatal:p") {}
|
: Interface(std::move(module_), system_, "fatal:p") {
|
||||||
|
static const FunctionInfo functions[] = {
|
||||||
|
{0, nullptr, "GetFatalEvent"},
|
||||||
|
{10, nullptr, "GetFatalContext"},
|
||||||
|
};
|
||||||
|
RegisterHandlers(functions);
|
||||||
|
}
|
||||||
|
|
||||||
Fatal_P::~Fatal_P() = default;
|
Fatal_P::~Fatal_P() = default;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user