summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/window_controller.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2024-02-12 02:38:42 +0100
committerLiam <byteslice@airmail.cc>2024-02-12 15:17:25 +0100
commit87b740df46935a672a6bf5d43c944a2516cc72f9 (patch)
tree3de50c74fc8795ca486653cf4603b30dbad6bff0 /src/core/hle/service/am/window_controller.h
parentam: rewrite IStorage (diff)
downloadyuzu-87b740df46935a672a6bf5d43c944a2516cc72f9.tar
yuzu-87b740df46935a672a6bf5d43c944a2516cc72f9.tar.gz
yuzu-87b740df46935a672a6bf5d43c944a2516cc72f9.tar.bz2
yuzu-87b740df46935a672a6bf5d43c944a2516cc72f9.tar.lz
yuzu-87b740df46935a672a6bf5d43c944a2516cc72f9.tar.xz
yuzu-87b740df46935a672a6bf5d43c944a2516cc72f9.tar.zst
yuzu-87b740df46935a672a6bf5d43c944a2516cc72f9.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/am/window_controller.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/core/hle/service/am/window_controller.h b/src/core/hle/service/am/window_controller.h
deleted file mode 100644
index a28219abe..000000000
--- a/src/core/hle/service/am/window_controller.h
+++ /dev/null
@@ -1,27 +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 IWindowController final : public ServiceFramework<IWindowController> {
-public:
- explicit IWindowController(Core::System& system_, std::shared_ptr<Applet> applet_);
- ~IWindowController() override;
-
-private:
- void GetAppletResourceUserId(HLERequestContext& ctx);
- void GetAppletResourceUserIdOfCallerApplet(HLERequestContext& ctx);
- void AcquireForegroundRights(HLERequestContext& ctx);
- void SetAppletWindowVisibility(HLERequestContext& ctx);
- void SetAppletGpuTimeSlice(HLERequestContext& ctx);
-
- const std::shared_ptr<Applet> applet;
-};
-
-} // namespace Service::AM