am: IHomeMenuFunctions:GetPopFromGeneralChannelEvent

QLaunch 1.0.0
This commit is contained in:
David Marcec
2020-05-01 11:20:43 +10:00
parent f88d2f5739
commit 8850d85341
3 changed files with 20 additions and 4 deletions

View File

@ -292,11 +292,15 @@ private:
class IHomeMenuFunctions final : public ServiceFramework<IHomeMenuFunctions> {
public:
IHomeMenuFunctions();
explicit IHomeMenuFunctions(Kernel::KernelCore& kernel);
~IHomeMenuFunctions() override;
private:
void RequestToGetForeground(Kernel::HLERequestContext& ctx);
void GetPopFromGeneralChannelEvent(Kernel::HLERequestContext& ctx);
Kernel::EventPair pop_from_general_channel_event;
Kernel::KernelCore& kernel;
};
class IGlobalStateController final : public ServiceFramework<IGlobalStateController> {