From 335096e19a50b38f5ccf81a3d4942a4a0e4dc546 Mon Sep 17 00:00:00 2001 From: mailwl Date: Wed, 7 Feb 2018 15:11:17 +0300 Subject: Service: stub some functions in am, audio, time, vi services --- src/core/hle/service/am/am.h | 5 +++++ 1 file changed, 5 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 0f17f8377..793ac6555 100644 --- a/src/core/hle/service/am/am.h +++ b/src/core/hle/service/am/am.h @@ -60,9 +60,11 @@ private: void SetOutOfFocusSuspendingEnabled(Kernel::HLERequestContext& ctx); void LockExit(Kernel::HLERequestContext& ctx); void UnlockExit(Kernel::HLERequestContext& ctx); + void GetLibraryAppletLaunchableEvent(Kernel::HLERequestContext& ctx); void CreateManagedDisplayLayer(Kernel::HLERequestContext& ctx); std::shared_ptr nvflinger; + Kernel::SharedPtr launchable_event; }; class ICommonStateGetter final : public ServiceFramework { @@ -92,6 +94,9 @@ private: class ILibraryAppletCreator final : public ServiceFramework { public: ILibraryAppletCreator(); + +private: + void CreateLibraryApplet(Kernel::HLERequestContext& ctx); }; class IApplicationFunctions final : public ServiceFramework { -- cgit v1.2.3