From 5e9c547952281ddb964428b0c72829b3c04f1472 Mon Sep 17 00:00:00 2001 From: Hexagon12 Date: Mon, 7 May 2018 18:27:30 +0300 Subject: Stubs for QLaunch (#428) * Stubs for QLaunch * Wiped unrelated stuff * Addressed comment * Dropped GetPopFromGeneralChannelEvent --- src/core/hle/service/am/am.h | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'src/core/hle/service/am/am.h') diff --git a/src/core/hle/service/am/am.h b/src/core/hle/service/am/am.h index 27dbd8c95..5b3d416f3 100644 --- a/src/core/hle/service/am/am.h +++ b/src/core/hle/service/am/am.h @@ -70,6 +70,7 @@ private: void GetLibraryAppletLaunchableEvent(Kernel::HLERequestContext& ctx); void CreateManagedDisplayLayer(Kernel::HLERequestContext& ctx); void SetScreenShotPermission(Kernel::HLERequestContext& ctx); + void SetHandlesRequestToDisplay(Kernel::HLERequestContext& ctx); std::shared_ptr nvflinger; Kernel::SharedPtr launchable_event; @@ -113,6 +114,7 @@ public: private: void PopLaunchParameter(Kernel::HLERequestContext& ctx); + void CreateApplicationAndRequestToStartForQuest(Kernel::HLERequestContext& ctx); void EnsureSaveData(Kernel::HLERequestContext& ctx); void SetTerminateResult(Kernel::HLERequestContext& ctx); void GetDesiredLanguage(Kernel::HLERequestContext& ctx); @@ -121,6 +123,29 @@ private: void NotifyRunning(Kernel::HLERequestContext& ctx); }; +class IHomeMenuFunctions final : public ServiceFramework { +public: + IHomeMenuFunctions(); + +private: + void RequestToGetForeground(Kernel::HLERequestContext& ctx); +}; + +class IGlobalStateController final : public ServiceFramework { +public: + IGlobalStateController(); +}; + +class IApplicationCreator final : public ServiceFramework { +public: + IApplicationCreator(); +}; + +class IProcessWindingController final : public ServiceFramework { +public: + IProcessWindingController(); +}; + /// Registers all AM services with the specified service manager. void InstallInterfaces(SM::ServiceManager& service_manager, std::shared_ptr nvflinger); -- cgit v1.2.3