mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-11 04:07:59 -05:00
service: Update service function tables
Updates function tables based off information from SwitchBrew.
This commit is contained in:
@ -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);
|
||||
}
|
||||
};
|
||||
|
Reference in New Issue
Block a user