summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/filesystem/fsp/fsp_util.h
diff options
context:
space:
mode:
authorFearlessTobi <thm.frey@gmail.com>2024-02-19 15:43:18 +0100
committerFearlessTobi <thm.frey@gmail.com>2024-02-19 19:11:07 +0100
commitb5a17b501bf66c02495ae6d69a6d734792e3cc6f (patch)
treee86d3fe28f3fb984bf4b1e5196d39cceb1782631 /src/core/hle/service/filesystem/fsp/fsp_util.h
parentfs: Add and use fs_save_data_types.h (diff)
downloadyuzu-b5a17b501bf66c02495ae6d69a6d734792e3cc6f.tar
yuzu-b5a17b501bf66c02495ae6d69a6d734792e3cc6f.tar.gz
yuzu-b5a17b501bf66c02495ae6d69a6d734792e3cc6f.tar.bz2
yuzu-b5a17b501bf66c02495ae6d69a6d734792e3cc6f.tar.lz
yuzu-b5a17b501bf66c02495ae6d69a6d734792e3cc6f.tar.xz
yuzu-b5a17b501bf66c02495ae6d69a6d734792e3cc6f.tar.zst
yuzu-b5a17b501bf66c02495ae6d69a6d734792e3cc6f.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/filesystem/fsp/fsp_types.h (renamed from src/core/hle/service/filesystem/fsp/fsp_util.h)12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/core/hle/service/filesystem/fsp/fsp_util.h b/src/core/hle/service/filesystem/fsp/fsp_types.h
index 253f866db..294da6a2d 100644
--- a/src/core/hle/service/filesystem/fsp/fsp_util.h
+++ b/src/core/hle/service/filesystem/fsp/fsp_types.h
@@ -7,6 +7,18 @@
namespace Service::FileSystem {
+enum class FileSystemProxyType : u8 {
+ Code = 0,
+ Rom = 1,
+ Logo = 2,
+ Control = 3,
+ Manual = 4,
+ Meta = 5,
+ Data = 6,
+ Package = 7,
+ RegisteredUpdate = 8,
+};
+
struct SizeGetter {
std::function<u64()> get_free_size;
std::function<u64()> get_total_size;