mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-16 14:27:52 +00:00
service: Update service function tables
Updates function tables based off information from SwitchBrew.
This commit is contained in:
parent
1302d026a1
commit
14ead4ceb0
27 changed files with 262 additions and 57 deletions
|
@ -15,12 +15,16 @@ namespace Service::NIFM {
|
|||
class IScanRequest final : public ServiceFramework<IScanRequest> {
|
||||
public:
|
||||
explicit IScanRequest() : ServiceFramework("IScanRequest") {
|
||||
// clang-format off
|
||||
static const FunctionInfo functions[] = {
|
||||
{0, nullptr, "Submit"},
|
||||
{1, nullptr, "IsProcessing"},
|
||||
{2, nullptr, "GetResult"},
|
||||
{3, nullptr, "GetSystemEventReadableHandle"},
|
||||
{4, nullptr, "SetChannels"},
|
||||
};
|
||||
// clang-format on
|
||||
|
||||
RegisterHandlers(functions);
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue