summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/caps/caps_u.h
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2020-04-01 01:16:36 +0200
committerGitHub <noreply@github.com>2020-04-01 01:16:36 +0200
commit224a75d83958eda9c563fb4a9c656db285438f9d (patch)
treea82c3c98f37e94e20865bc5351b19f0df4f9dbde /src/core/hle/service/caps/caps_u.h
parentMerge pull request #3561 from ReinUsesLisp/f2f-conversion (diff)
downloadyuzu-224a75d83958eda9c563fb4a9c656db285438f9d.tar
yuzu-224a75d83958eda9c563fb4a9c656db285438f9d.tar.gz
yuzu-224a75d83958eda9c563fb4a9c656db285438f9d.tar.bz2
yuzu-224a75d83958eda9c563fb4a9c656db285438f9d.tar.lz
yuzu-224a75d83958eda9c563fb4a9c656db285438f9d.tar.xz
yuzu-224a75d83958eda9c563fb4a9c656db285438f9d.tar.zst
yuzu-224a75d83958eda9c563fb4a9c656db285438f9d.zip
Diffstat (limited to 'src/core/hle/service/caps/caps_u.h')
-rw-r--r--src/core/hle/service/caps/caps_u.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/core/hle/service/caps/caps_u.h b/src/core/hle/service/caps/caps_u.h
new file mode 100644
index 000000000..e6e0716ff
--- /dev/null
+++ b/src/core/hle/service/caps/caps_u.h
@@ -0,0 +1,24 @@
+// Copyright 2020 yuzu emulator team
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#pragma once
+
+#include "core/hle/service/service.h"
+
+namespace Kernel {
+class HLERequestContext;
+}
+
+namespace Service::Capture {
+
+class CAPS_U final : public ServiceFramework<CAPS_U> {
+public:
+ explicit CAPS_U();
+ ~CAPS_U() override;
+
+private:
+ void GetAlbumContentsFileListForApplication(Kernel::HLERequestContext& ctx);
+};
+
+} // namespace Service::Capture