2026-09-26 06:34:09

Signed-off-by: lizzie <lizzie@eden-emu.dev>
This commit is contained in:
lizzie
2026-09-26 06:34:09 +00:00
committed by crueter
parent 5e7ba8fc9c
commit 22b7e1e24c
48 changed files with 2390 additions and 2230 deletions
+5 -3
View File
@@ -15,9 +15,7 @@ public:
IContextRegistrar(Core::System& system_) : ServiceFramework{system_, "IContextRegistrar"} {}
FunctionInfoBase const* FindRequest(u32 key) override {
return HandlerTableGenerateWithFind(key,
FunctionInfo{0, &IContextRegistrar::Complete, "Complete"}
);
return HandlerTableGenerateWithFind(key, functions);
}
~IContextRegistrar() override = default;
@@ -39,6 +37,10 @@ private:
rb.Push(ResultSuccess);
rb.Push(0);
}
static constexpr auto functions = CreateStaticMap(
FunctionInfo{0, &IContextRegistrar::Complete, "Complete"}
);
};
ECTX_W::ECTX_W(Core::System& system_) : ServiceFramework{system_, "ectx:w"} {