summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ns/ns_types.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2024-02-17 19:46:18 +0100
committerLiam <byteslice@airmail.cc>2024-02-18 16:32:21 +0100
commit2eded86b4b525fad4221115b716700d63ad8438f (patch)
tree284865b9809b7787a4aeb0f0ad774419ddca79f0 /src/core/hle/service/ns/ns_types.h
parentns: rewrite IReadOnlyApplicationRecordInterface (diff)
downloadyuzu-2eded86b4b525fad4221115b716700d63ad8438f.tar
yuzu-2eded86b4b525fad4221115b716700d63ad8438f.tar.gz
yuzu-2eded86b4b525fad4221115b716700d63ad8438f.tar.bz2
yuzu-2eded86b4b525fad4221115b716700d63ad8438f.tar.lz
yuzu-2eded86b4b525fad4221115b716700d63ad8438f.tar.xz
yuzu-2eded86b4b525fad4221115b716700d63ad8438f.tar.zst
yuzu-2eded86b4b525fad4221115b716700d63ad8438f.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/ns/ns_types.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/hle/service/ns/ns_types.h b/src/core/hle/service/ns/ns_types.h
index d7c16eac0..fa2aad3d9 100644
--- a/src/core/hle/service/ns/ns_types.h
+++ b/src/core/hle/service/ns/ns_types.h
@@ -16,6 +16,12 @@ enum class ApplicationRecordType : u8 {
GameCard = 0x10,
};
+enum class ApplicationControlSource : u8 {
+ CacheOnly = 0,
+ Storage = 1,
+ StorageOnly = 2,
+};
+
struct ApplicationRecord {
u64 application_id;
ApplicationRecordType type;