diff options
| author | Franco M <francomaro@gmail.com> | 2023-10-26 19:11:15 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-26 19:11:15 -0300 |
| commit | b5415b687203599fe18e2cefc78700e4c6f2ae7c (patch) | |
| tree | ddd4c82cab9e367cdcf2bbf4a1d444f85ed0b02e /src/core/hle/service/caps/caps_su.h | |
| parent | b76a1d987ff83b831a19a0c19f9fcd96c504c077 (diff) | |
| parent | 43be2bfe332d5537041262eb08037993239eaf5f (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.h | 8 |
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 |
