am: IHomeMenuFunctions:GetPopFromGeneralChannelEvent

QLaunch 1.0.0
This commit is contained in:
David Marcec 2020-05-01 11:20:43 +10:00
parent 1acf3384c1
commit e433e24ed4
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> {