service: Update function tables
Keeps the function tables up to date. Updated based off information from Switchbrew.
This commit is contained in:
parent
8714d40a77
commit
e21b6ff79d
33 changed files with 192 additions and 7 deletions
|
@ -7,6 +7,7 @@
|
|||
namespace Service::Sockets {
|
||||
|
||||
NSD::NSD(const char* name) : ServiceFramework(name) {
|
||||
// clang-format off
|
||||
static const FunctionInfo functions[] = {
|
||||
{10, nullptr, "GetSettingName"},
|
||||
{11, nullptr, "GetEnvironmentIdentifier"},
|
||||
|
@ -22,10 +23,14 @@ NSD::NSD(const char* name) : ServiceFramework(name) {
|
|||
{42, nullptr, "GetNasApiFqdn"},
|
||||
{43, nullptr, "GetNasApiFqdnEx"},
|
||||
{50, nullptr, "GetCurrentSetting"},
|
||||
{51, nullptr, "WriteTestParameter"},
|
||||
{52, nullptr, "ReadTestParameter"},
|
||||
{60, nullptr, "ReadSaveDataFromFsForTest"},
|
||||
{61, nullptr, "WriteSaveDataToFsForTest"},
|
||||
{62, nullptr, "DeleteSaveDataOfFsForTest"},
|
||||
};
|
||||
// clang-format on
|
||||
|
||||
RegisterHandlers(functions);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue