From b2e140b03284fac8fecc7f5bd86f538b76dadc8b Mon Sep 17 00:00:00 2001 From: Liam Date: Sun, 11 Feb 2024 18:26:32 -0500 Subject: am: rewrite appletAE, appletOE --- src/core/hle/service/am/am_types.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/core/hle/service/am/am_types.h') 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; -- cgit v1.2.3