summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/caps/caps_c.h
diff options
context:
space:
mode:
authorNarr the Reg <juangerman-13@hotmail.com>2024-01-29 05:29:06 +0100
committerNarr the Reg <juangerman-13@hotmail.com>2024-01-30 03:35:45 +0100
commit4afca6bf5de516961c4109ca363c437c9da2e677 (patch)
treeea1afe7284facdcb20dae7f887ebe6697392b785 /src/core/hle/service/caps/caps_c.h
parentMerge pull request #12843 from t895/system-driver-whoops (diff)
downloadyuzu-4afca6bf5de516961c4109ca363c437c9da2e677.tar
yuzu-4afca6bf5de516961c4109ca363c437c9da2e677.tar.gz
yuzu-4afca6bf5de516961c4109ca363c437c9da2e677.tar.bz2
yuzu-4afca6bf5de516961c4109ca363c437c9da2e677.tar.lz
yuzu-4afca6bf5de516961c4109ca363c437c9da2e677.tar.xz
yuzu-4afca6bf5de516961c4109ca363c437c9da2e677.tar.zst
yuzu-4afca6bf5de516961c4109ca363c437c9da2e677.zip
Diffstat (limited to 'src/core/hle/service/caps/caps_c.h')
-rw-r--r--src/core/hle/service/caps/caps_c.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/core/hle/service/caps/caps_c.h b/src/core/hle/service/caps/caps_c.h
index 92ba242db..0ecdfa114 100644
--- a/src/core/hle/service/caps/caps_c.h
+++ b/src/core/hle/service/caps/caps_c.h
@@ -3,6 +3,7 @@
#pragma once
+#include "core/hle/service/cmif_types.h"
#include "core/hle/service/service.h"
namespace Core {
@@ -11,6 +12,7 @@ class System;
namespace Service::Capture {
class AlbumManager;
+enum class ShimLibraryVersion : u64;
class IAlbumControlService final : public ServiceFramework<IAlbumControlService> {
public:
@@ -19,7 +21,8 @@ public:
~IAlbumControlService() override;
private:
- void SetShimLibraryVersion(HLERequestContext& ctx);
+ Result SetShimLibraryVersion(ShimLibraryVersion library_version,
+ ClientAppletResourceUserId aruid);
std::shared_ptr<AlbumManager> manager = nullptr;
};