summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/am.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-02-07 16:51:35 +0100
committerGitHub <noreply@github.com>2018-02-07 16:51:35 +0100
commit869d65e923ced3c71c771c2da97a07ba78ff7d9d (patch)
tree9bb1128673a0e925389bc84f39a6a934c3e1b5dd /src/core/hle/service/am/am.h
parentMerge pull request #166 from mailwl/hid-SetNpadHandhelpActivationMode (diff)
parentService: stub some functions in am, audio, time, vi services (diff)
downloadyuzu-869d65e923ced3c71c771c2da97a07ba78ff7d9d.tar
yuzu-869d65e923ced3c71c771c2da97a07ba78ff7d9d.tar.gz
yuzu-869d65e923ced3c71c771c2da97a07ba78ff7d9d.tar.bz2
yuzu-869d65e923ced3c71c771c2da97a07ba78ff7d9d.tar.lz
yuzu-869d65e923ced3c71c771c2da97a07ba78ff7d9d.tar.xz
yuzu-869d65e923ced3c71c771c2da97a07ba78ff7d9d.tar.zst
yuzu-869d65e923ced3c71c771c2da97a07ba78ff7d9d.zip
Diffstat (limited to 'src/core/hle/service/am/am.h')
-rw-r--r--src/core/hle/service/am/am.h5
1 files changed, 5 insertions, 0 deletions
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::NVFlinger> nvflinger;
+ Kernel::SharedPtr<Kernel::Event> launchable_event;
};
class ICommonStateGetter final : public ServiceFramework<ICommonStateGetter> {
@@ -92,6 +94,9 @@ private:
class ILibraryAppletCreator final : public ServiceFramework<ILibraryAppletCreator> {
public:
ILibraryAppletCreator();
+
+private:
+ void CreateLibraryApplet(Kernel::HLERequestContext& ctx);
};
class IApplicationFunctions final : public ServiceFramework<IApplicationFunctions> {