Dropped GetPopFromGeneralChannelEvent

This commit is contained in:
Hexagon12
2018-05-03 15:38:48 +03:00
parent c196c4b124
commit 19a5104c9b
2 changed files with 1 additions and 8 deletions
+1 -7
View File
@@ -593,19 +593,13 @@ IHomeMenuFunctions::IHomeMenuFunctions() : ServiceFramework("IHomeMenuFunctions"
{11, nullptr, "LockForeground"},
{12, nullptr, "UnlockForeground"},
{20, nullptr, "PopFromGeneralChannel"},
{21, &IHomeMenuFunctions::GetPopFromGeneralChannelEvent, "GetPopFromGeneralChannelEvent"},
{21, nullptr, "GetPopFromGeneralChannelEvent"},
{30, nullptr, "GetHomeButtonWriterLockAccessor"},
{31, nullptr, "GetWriterLockAccessorEx"},
};
RegisterHandlers(functions);
}
void IHomeMenuFunctions::GetPopFromGeneralChannelEvent(Kernel::HLERequestContext& ctx) {
IPC::ResponseBuilder rb{ctx, 2};
rb.Push(RESULT_SUCCESS);
NGLOG_WARNING(Service_AM, "(STUBBED) called");
}
void IHomeMenuFunctions::RequestToGetForeground(Kernel::HLERequestContext& ctx) {
IPC::ResponseBuilder rb{ctx, 2};
rb.Push(RESULT_SUCCESS);
-1
View File
@@ -128,7 +128,6 @@ public:
IHomeMenuFunctions();
private:
void GetPopFromGeneralChannelEvent(Kernel::HLERequestContext& ctx);
void RequestToGetForeground(Kernel::HLERequestContext& ctx);
};