mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 12:32:40 +02:00
ncm_types: Replaced the typedef for NcmContentMetaInfo with an actual struct. Closes #351.
This commit is contained in:
parent
bbcabee29f
commit
4626b50341
@ -97,8 +97,14 @@ typedef struct {
|
||||
NcmContentInfo info;
|
||||
} NcmPackagedContentInfo;
|
||||
|
||||
/// Used by system updates. They share the exact same struct as NcmContentMetaKey
|
||||
typedef NcmContentMetaKey NcmContentMetaInfo;
|
||||
/// ContentMetaInfo
|
||||
typedef struct {
|
||||
u64 id; ///< Id.
|
||||
u32 version; ///< Version.
|
||||
u8 type; ///< \ref NcmContentMetaType
|
||||
u8 attr; ///< \ref NcmContentMetaAttribute
|
||||
u8 padding[2]; ///< Padding.
|
||||
} NcmContentMetaInfo;
|
||||
|
||||
/// ContentMetaHeader
|
||||
typedef struct {
|
||||
|
Loading…
Reference in New Issue
Block a user