mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-22 13:02:38 +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;
|
NcmContentInfo info;
|
||||||
} NcmPackagedContentInfo;
|
} NcmPackagedContentInfo;
|
||||||
|
|
||||||
/// Used by system updates. They share the exact same struct as NcmContentMetaKey
|
/// ContentMetaInfo
|
||||||
typedef NcmContentMetaKey NcmContentMetaInfo;
|
typedef struct {
|
||||||
|
u64 id; ///< Id.
|
||||||
|
u32 version; ///< Version.
|
||||||
|
u8 type; ///< \ref NcmContentMetaType
|
||||||
|
u8 attr; ///< \ref NcmContentMetaAttribute
|
||||||
|
u8 padding[2]; ///< Padding.
|
||||||
|
} NcmContentMetaInfo;
|
||||||
|
|
||||||
/// ContentMetaHeader
|
/// ContentMetaHeader
|
||||||
typedef struct {
|
typedef struct {
|
||||||
|
Loading…
Reference in New Issue
Block a user