Merge pull request #442 from Hexagon12/nfp-service-names
Updated nfp to have more service names
This commit is contained in:
commit
dc26601860
1 changed files with 24 additions and 24 deletions
|
@ -17,30 +17,30 @@ public:
|
||||||
IUser() : ServiceFramework("IUser") {
|
IUser() : ServiceFramework("IUser") {
|
||||||
static const FunctionInfo functions[] = {
|
static const FunctionInfo functions[] = {
|
||||||
{0, &IUser::Initialize, "Initialize"},
|
{0, &IUser::Initialize, "Initialize"},
|
||||||
{1, nullptr, "Unknown1"},
|
{1, nullptr, "Finalize"},
|
||||||
{2, nullptr, "Unknown2"},
|
{2, nullptr, "ListDevices"},
|
||||||
{3, nullptr, "Unknown3"},
|
{3, nullptr, "StartDetection"},
|
||||||
{4, nullptr, "Unknown4"},
|
{4, nullptr, "StopDetection"},
|
||||||
{5, nullptr, "Unknown5"},
|
{5, nullptr, "Mount"},
|
||||||
{6, nullptr, "Unknown6"},
|
{6, nullptr, "Unmount"},
|
||||||
{7, nullptr, "Unknown7"},
|
{7, nullptr, "OpenApplicationArea"},
|
||||||
{8, nullptr, "Unknown8"},
|
{8, nullptr, "GetApplicationArea"},
|
||||||
{9, nullptr, "Unknown9"},
|
{9, nullptr, "SetApplicationArea"},
|
||||||
{10, nullptr, "Unknown10"},
|
{10, nullptr, "Flush"},
|
||||||
{11, nullptr, "Unknown11"},
|
{11, nullptr, "Restore"},
|
||||||
{12, nullptr, "Unknown12"},
|
{12, nullptr, "CreateApplicationArea"},
|
||||||
{13, nullptr, "Unknown13"},
|
{13, nullptr, "GetTagInfo"},
|
||||||
{14, nullptr, "Unknown14"},
|
{14, nullptr, "GetRegisterInfo"},
|
||||||
{15, nullptr, "Unknown15"},
|
{15, nullptr, "GetCommonInfo"},
|
||||||
{16, nullptr, "Unknown16"},
|
{16, nullptr, "GetModelInfo"},
|
||||||
{17, nullptr, "Unknown17"},
|
{17, nullptr, "AttachActivateEvent"},
|
||||||
{18, nullptr, "Unknown18"},
|
{18, nullptr, "AttachDeactivateEvent"},
|
||||||
{19, nullptr, "Unknown19"},
|
{19, nullptr, "GetState"},
|
||||||
{20, nullptr, "Unknown20"},
|
{20, nullptr, "GetDeviceState"},
|
||||||
{21, nullptr, "Unknown21"},
|
{21, nullptr, "GetNpadId"},
|
||||||
{22, nullptr, "Unknown22"},
|
{22, nullptr, "GetApplicationArea2"},
|
||||||
{23, nullptr, "Unknown23"},
|
{23, nullptr, "AttachAvailabilityChangeEvent"},
|
||||||
{24, nullptr, "Unknown24"},
|
{24, nullptr, "RecreateApplicationArea"},
|
||||||
};
|
};
|
||||||
RegisterHandlers(functions);
|
RegisterHandlers(functions);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue