summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/am_types.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/am/am_types.h')
-rw-r--r--src/core/hle/service/am/am_types.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/hle/service/am/am_types.h b/src/core/hle/service/am/am_types.h
index 8c33feb15..749081e3d 100644
--- a/src/core/hle/service/am/am_types.h
+++ b/src/core/hle/service/am/am_types.h
@@ -169,6 +169,12 @@ struct AppletIdentityInfo {
};
static_assert(sizeof(AppletIdentityInfo) == 0x10, "AppletIdentityInfo has incorrect size.");
+struct AppletAttribute {
+ u8 flag;
+ INSERT_PADDING_BYTES_NOINIT(0x7F);
+};
+static_assert(sizeof(AppletAttribute) == 0x80, "AppletAttribute has incorrect size.");
+
using AppletResourceUserId = u64;
using ProgramId = u64;