summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/caps/caps_su.h
diff options
context:
space:
mode:
authorgerman77 <juangerman-13@hotmail.com>2023-10-18 07:05:44 +0200
committerNarr the Reg <juangerman-13@hotmail.com>2023-10-23 18:18:22 +0200
commit897b411ae76a817421453120ca0d0812e3de233f (patch)
treec4d69fd35790e21605c6382b29107186e5e2a6a1 /src/core/hle/service/caps/caps_su.h
parentexternals: stb: Add image write (diff)
downloadyuzu-897b411ae76a817421453120ca0d0812e3de233f.tar
yuzu-897b411ae76a817421453120ca0d0812e3de233f.tar.gz
yuzu-897b411ae76a817421453120ca0d0812e3de233f.tar.bz2
yuzu-897b411ae76a817421453120ca0d0812e3de233f.tar.lz
yuzu-897b411ae76a817421453120ca0d0812e3de233f.tar.xz
yuzu-897b411ae76a817421453120ca0d0812e3de233f.tar.zst
yuzu-897b411ae76a817421453120ca0d0812e3de233f.zip
Diffstat (limited to 'src/core/hle/service/caps/caps_su.h')
-rw-r--r--src/core/hle/service/caps/caps_su.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/core/hle/service/caps/caps_su.h b/src/core/hle/service/caps/caps_su.h
index 647e3059d..89e71f506 100644
--- a/src/core/hle/service/caps/caps_su.h
+++ b/src/core/hle/service/caps/caps_su.h
@@ -10,14 +10,20 @@ class System;
}
namespace Service::Capture {
+class AlbumManager;
class IScreenShotApplicationService final : public ServiceFramework<IScreenShotApplicationService> {
public:
- explicit IScreenShotApplicationService(Core::System& system_);
+ explicit IScreenShotApplicationService(Core::System& system_,
+ std::shared_ptr<AlbumManager> album_manager);
~IScreenShotApplicationService() override;
private:
void SetShimLibraryVersion(HLERequestContext& ctx);
+ void SaveScreenShotEx0(HLERequestContext& ctx);
+ void SaveScreenShotEx1(HLERequestContext& ctx);
+
+ std::shared_ptr<AlbumManager> manager;
};
} // namespace Service::Capture