service/psc: Update function tables
Updates the function tables based off information on SwitchBrew. Gets rid of a swath of unknown names.
This commit is contained in:
parent
2561a79c39
commit
49a3571e76
|
@ -17,13 +17,13 @@ public:
|
||||||
explicit PSC_C() : ServiceFramework{"psc:c"} {
|
explicit PSC_C() : ServiceFramework{"psc:c"} {
|
||||||
// clang-format off
|
// clang-format off
|
||||||
static const FunctionInfo functions[] = {
|
static const FunctionInfo functions[] = {
|
||||||
{0, nullptr, "Unknown1"},
|
{0, nullptr, "Initialize"},
|
||||||
{1, nullptr, "Unknown2"},
|
{1, nullptr, "DispatchRequest"},
|
||||||
{2, nullptr, "Unknown3"},
|
{2, nullptr, "GetResult"},
|
||||||
{3, nullptr, "Unknown4"},
|
{3, nullptr, "GetState"},
|
||||||
{4, nullptr, "Unknown5"},
|
{4, nullptr, "Cancel"},
|
||||||
{5, nullptr, "Unknown6"},
|
{5, nullptr, "PrintModuleInformation"},
|
||||||
{6, nullptr, "Unknown7"},
|
{6, nullptr, "GetModuleInformation"},
|
||||||
};
|
};
|
||||||
// clang-format on
|
// clang-format on
|
||||||
|
|
||||||
|
@ -39,7 +39,8 @@ public:
|
||||||
{0, nullptr, "Initialize"},
|
{0, nullptr, "Initialize"},
|
||||||
{1, nullptr, "GetRequest"},
|
{1, nullptr, "GetRequest"},
|
||||||
{2, nullptr, "Acknowledge"},
|
{2, nullptr, "Acknowledge"},
|
||||||
{3, nullptr, "Unknown1"},
|
{3, nullptr, "Finalize"},
|
||||||
|
{4, nullptr, "AcknowledgeEx"},
|
||||||
};
|
};
|
||||||
// clang-format on
|
// clang-format on
|
||||||
|
|
||||||
|
|
Reference in New Issue