summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/process_winding_controller.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2024-02-12 02:16:38 +0100
committerLiam <byteslice@airmail.cc>2024-02-12 15:16:03 +0100
commit79f225bd5979f058b682845bcafa9a34af8fdc4e (patch)
treeaf98ed7a3ab6d0ac308fb476bfa7f35ced058e58 /src/core/hle/service/am/process_winding_controller.h
parentam: rewrite ILibraryAppletSelfAccessor (diff)
downloadyuzu-79f225bd5979f058b682845bcafa9a34af8fdc4e.tar
yuzu-79f225bd5979f058b682845bcafa9a34af8fdc4e.tar.gz
yuzu-79f225bd5979f058b682845bcafa9a34af8fdc4e.tar.bz2
yuzu-79f225bd5979f058b682845bcafa9a34af8fdc4e.tar.lz
yuzu-79f225bd5979f058b682845bcafa9a34af8fdc4e.tar.xz
yuzu-79f225bd5979f058b682845bcafa9a34af8fdc4e.tar.zst
yuzu-79f225bd5979f058b682845bcafa9a34af8fdc4e.zip
Diffstat (limited to 'src/core/hle/service/am/process_winding_controller.h')
-rw-r--r--src/core/hle/service/am/process_winding_controller.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/core/hle/service/am/process_winding_controller.h b/src/core/hle/service/am/process_winding_controller.h
deleted file mode 100644
index 71ae4c4f5..000000000
--- a/src/core/hle/service/am/process_winding_controller.h
+++ /dev/null
@@ -1,24 +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 IProcessWindingController final : public ServiceFramework<IProcessWindingController> {
-public:
- explicit IProcessWindingController(Core::System& system_, std::shared_ptr<Applet> applet_);
- ~IProcessWindingController() override;
-
-private:
- void GetLaunchReason(HLERequestContext& ctx);
- void OpenCallingLibraryApplet(HLERequestContext& ctx);
-
- const std::shared_ptr<Applet> applet;
-};
-
-} // namespace Service::AM