summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/application_proxy.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2024-02-12 00:31:29 +0100
committerLiam <byteslice@airmail.cc>2024-02-12 03:59:33 +0100
commitc7e97b22fb6fd14800ad374a13ad21d6a4c829f1 (patch)
tree23263e4ecf7c77a40a0366ce1ed099ab4b653d62 /src/core/hle/service/am/application_proxy.h
parentam: rewrite appletAE, appletOE (diff)
downloadyuzu-c7e97b22fb6fd14800ad374a13ad21d6a4c829f1.tar
yuzu-c7e97b22fb6fd14800ad374a13ad21d6a4c829f1.tar.gz
yuzu-c7e97b22fb6fd14800ad374a13ad21d6a4c829f1.tar.bz2
yuzu-c7e97b22fb6fd14800ad374a13ad21d6a4c829f1.tar.lz
yuzu-c7e97b22fb6fd14800ad374a13ad21d6a4c829f1.tar.xz
yuzu-c7e97b22fb6fd14800ad374a13ad21d6a4c829f1.tar.zst
yuzu-c7e97b22fb6fd14800ad374a13ad21d6a4c829f1.zip
Diffstat (limited to 'src/core/hle/service/am/application_proxy.h')
-rw-r--r--src/core/hle/service/am/application_proxy.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/core/hle/service/am/application_proxy.h b/src/core/hle/service/am/application_proxy.h
deleted file mode 100644
index eb98b095c..000000000
--- a/src/core/hle/service/am/application_proxy.h
+++ /dev/null
@@ -1,33 +0,0 @@
-// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
-// SPDX-License-Identifier: GPL-2.0-or-later
-
-#pragma once
-
-#include "core/hle/service/service.h"
-
-namespace Service::AM {
-
-struct Applet;
-
-class IApplicationProxy final : public ServiceFramework<IApplicationProxy> {
-public:
- explicit IApplicationProxy(Nvnflinger::Nvnflinger& nvnflinger_,
- std::shared_ptr<Applet> msg_queue_, Core::System& system_);
- ~IApplicationProxy();
-
-private:
- void GetAudioController(HLERequestContext& ctx);
- void GetDisplayController(HLERequestContext& ctx);
- void GetProcessWindingController(HLERequestContext& ctx);
- void GetDebugFunctions(HLERequestContext& ctx);
- void GetWindowController(HLERequestContext& ctx);
- void GetSelfController(HLERequestContext& ctx);
- void GetCommonStateGetter(HLERequestContext& ctx);
- void GetLibraryAppletCreator(HLERequestContext& ctx);
- void GetApplicationFunctions(HLERequestContext& ctx);
-
- Nvnflinger::Nvnflinger& nvnflinger;
- std::shared_ptr<Applet> applet;
-};
-
-} // namespace Service::AM