Updated nfp with more service names

This commit is contained in:
Hexagon12 2018-05-13 13:08:58 +03:00
parent 1b5c02fc37
commit 0984e9d601

View file

@ -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);
} }