service: Update function tables
Updates function tables according to info on SwitchBrew.
This commit is contained in:
parent
d33399e1f4
commit
020519def8
|
@ -1201,6 +1201,8 @@ IApplicationFunctions::IApplicationFunctions(Core::System& system_)
|
||||||
{151, nullptr, "TryPopFromNotificationStorageChannel"},
|
{151, nullptr, "TryPopFromNotificationStorageChannel"},
|
||||||
{160, nullptr, "GetHealthWarningDisappearedSystemEvent"},
|
{160, nullptr, "GetHealthWarningDisappearedSystemEvent"},
|
||||||
{170, nullptr, "SetHdcpAuthenticationActivated"},
|
{170, nullptr, "SetHdcpAuthenticationActivated"},
|
||||||
|
{180, nullptr, "GetLaunchRequiredVersion"},
|
||||||
|
{181, nullptr, "UpgradeLaunchRequiredVersion"},
|
||||||
{500, nullptr, "StartContinuousRecordingFlushForDebug"},
|
{500, nullptr, "StartContinuousRecordingFlushForDebug"},
|
||||||
{1000, nullptr, "CreateMovieMaker"},
|
{1000, nullptr, "CreateMovieMaker"},
|
||||||
{1001, nullptr, "PrepareForJit"},
|
{1001, nullptr, "PrepareForJit"},
|
||||||
|
|
|
@ -260,7 +260,7 @@ Hid::Hid(Core::System& system) : ServiceFramework("hid"), system(system) {
|
||||||
{404, nullptr, "HasLeftRightBattery"},
|
{404, nullptr, "HasLeftRightBattery"},
|
||||||
{405, nullptr, "GetNpadInterfaceType"},
|
{405, nullptr, "GetNpadInterfaceType"},
|
||||||
{406, nullptr, "GetNpadLeftRightInterfaceType"},
|
{406, nullptr, "GetNpadLeftRightInterfaceType"},
|
||||||
{407, nullptr, "GetNpadOfHighestBatteryLevelForJoyLeft"},
|
{407, nullptr, "GetNpadOfHighestBatteryLevel"},
|
||||||
{408, nullptr, "GetNpadOfHighestBatteryLevelForJoyRight"},
|
{408, nullptr, "GetNpadOfHighestBatteryLevelForJoyRight"},
|
||||||
{500, nullptr, "GetPalmaConnectionHandle"},
|
{500, nullptr, "GetPalmaConnectionHandle"},
|
||||||
{501, nullptr, "InitializePalma"},
|
{501, nullptr, "InitializePalma"},
|
||||||
|
|
|
@ -47,6 +47,7 @@ public:
|
||||||
{23, nullptr, "Convert"},
|
{23, nullptr, "Convert"},
|
||||||
{24, nullptr, "ConvertCoreDataToCharInfo"},
|
{24, nullptr, "ConvertCoreDataToCharInfo"},
|
||||||
{25, nullptr, "ConvertCharInfoToCoreData"},
|
{25, nullptr, "ConvertCharInfoToCoreData"},
|
||||||
|
{26, nullptr, "Append"},
|
||||||
};
|
};
|
||||||
// clang-format on
|
// clang-format on
|
||||||
|
|
||||||
|
|
|
@ -202,6 +202,7 @@ SET::SET() : ServiceFramework("set") {
|
||||||
{8, &SET::GetQuestFlag, "GetQuestFlag"},
|
{8, &SET::GetQuestFlag, "GetQuestFlag"},
|
||||||
{9, &SET::GetKeyCodeMap2, "GetKeyCodeMap2"},
|
{9, &SET::GetKeyCodeMap2, "GetKeyCodeMap2"},
|
||||||
{10, nullptr, "GetFirmwareVersionForDebug"},
|
{10, nullptr, "GetFirmwareVersionForDebug"},
|
||||||
|
{11, nullptr, "GetDeviceNickName"},
|
||||||
};
|
};
|
||||||
// clang-format on
|
// clang-format on
|
||||||
|
|
||||||
|
|
|
@ -300,6 +300,8 @@ SET_SYS::SET_SYS() : ServiceFramework("set:sys") {
|
||||||
{198, nullptr, "SetButtonConfigRegisteredSettingsEmbedded"},
|
{198, nullptr, "SetButtonConfigRegisteredSettingsEmbedded"},
|
||||||
{199, nullptr, "GetButtonConfigRegisteredSettings"},
|
{199, nullptr, "GetButtonConfigRegisteredSettings"},
|
||||||
{200, nullptr, "SetButtonConfigRegisteredSettings"},
|
{200, nullptr, "SetButtonConfigRegisteredSettings"},
|
||||||
|
{201, nullptr, "GetFieldTestingFlag"},
|
||||||
|
{202, nullptr, "SetFieldTestingFlag"},
|
||||||
};
|
};
|
||||||
// clang-format on
|
// clang-format on
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue