ncm: update enums, refactor comparison operators

This commit is contained in:
Michael Scire
2022-10-18 11:10:17 -07:00
parent 05fee5d53c
commit 8ce4f19615
7 changed files with 52 additions and 49 deletions

View File

@@ -27,6 +27,7 @@ namespace ams::ncm {
ContentMetaAttribute_None = (0 << 0),
ContentMetaAttribute_IncludesExFatDriver = (1 << 0),
ContentMetaAttribute_Rebootless = (1 << 1),
ContentMetaAttribute_Compacted = (1 << 2),
};
struct ContentMetaInfo {
@@ -101,7 +102,7 @@ namespace ams::ncm {
u32 required_application_version;
u8 content_accessibilities;
u8 padding[3];
u64 data_patch_id; /* TODO: DataPatchId? */
DataPatchId data_patch_id;
};
struct LegacyAddOnContentMetaExtendedHeader {