aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/caps/caps_su.h
diff options
context:
space:
mode:
authorFranco M <francomaro@gmail.com>2023-10-26 19:11:15 -0300
committerGitHub <noreply@github.com>2023-10-26 19:11:15 -0300
commitb5415b687203599fe18e2cefc78700e4c6f2ae7c (patch)
treeddd4c82cab9e367cdcf2bbf4a1d444f85ed0b02e /src/core/hle/service/caps/caps_su.h
parentb76a1d987ff83b831a19a0c19f9fcd96c504c077 (diff)
parent43be2bfe332d5537041262eb08037993239eaf5f (diff)
Merge branch 'yuzu-emu:master' into new-shortcut
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