summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/applet_oe.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2024-02-12 00:26:32 +0100
committerLiam <byteslice@airmail.cc>2024-02-12 03:59:33 +0100
commitb2e140b03284fac8fecc7f5bd86f538b76dadc8b (patch)
treef841ce6517a97b2202021ab52e42626711c17af3 /src/core/hle/service/am/applet_oe.h
parentMerge pull request #12756 from liamwhite/applet-multiprocess-hwc (diff)
downloadyuzu-b2e140b03284fac8fecc7f5bd86f538b76dadc8b.tar
yuzu-b2e140b03284fac8fecc7f5bd86f538b76dadc8b.tar.gz
yuzu-b2e140b03284fac8fecc7f5bd86f538b76dadc8b.tar.bz2
yuzu-b2e140b03284fac8fecc7f5bd86f538b76dadc8b.tar.lz
yuzu-b2e140b03284fac8fecc7f5bd86f538b76dadc8b.tar.xz
yuzu-b2e140b03284fac8fecc7f5bd86f538b76dadc8b.tar.zst
yuzu-b2e140b03284fac8fecc7f5bd86f538b76dadc8b.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/am/applet_oe.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/core/hle/service/am/applet_oe.h b/src/core/hle/service/am/applet_oe.h
deleted file mode 100644
index f2ba1c924..000000000
--- a/src/core/hle/service/am/applet_oe.h
+++ /dev/null
@@ -1,37 +0,0 @@
-// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
-// SPDX-License-Identifier: GPL-2.0-or-later
-
-#pragma once
-
-#include <memory>
-
-#include "core/hle/service/service.h"
-
-namespace Service {
-namespace FileSystem {
-class FileSystemController;
-}
-
-namespace Nvnflinger {
-class Nvnflinger;
-}
-
-namespace AM {
-
-struct Applet;
-
-class AppletOE final : public ServiceFramework<AppletOE> {
-public:
- explicit AppletOE(Nvnflinger::Nvnflinger& nvnflinger_, Core::System& system_);
- ~AppletOE() override;
-
-private:
- void OpenApplicationProxy(HLERequestContext& ctx);
-
- std::shared_ptr<Applet> GetAppletFromContext(HLERequestContext& ctx);
-
- Nvnflinger::Nvnflinger& nvnflinger;
-};
-
-} // namespace AM
-} // namespace Service