mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-22 04:52:39 +02:00
ncm: add NcmContentMetaType, NcmContentMetaAttribute enums
This commit is contained in:
parent
a1861509f5
commit
f92852fbe5
@ -18,6 +18,23 @@ typedef enum {
|
|||||||
NcmContentType_Info = 5,
|
NcmContentType_Info = 5,
|
||||||
} NcmContentType;
|
} NcmContentType;
|
||||||
|
|
||||||
|
typedef enum {
|
||||||
|
NcmContentMetaType_SystemProgram = 0x01,
|
||||||
|
NcmContentMetaType_SystemData = 0x02,
|
||||||
|
NcmContentMetaType_SystemUpdate = 0x03,
|
||||||
|
NcmContentMetaType_BootImagePackage = 0x04,
|
||||||
|
NcmContentMetaType_BootImagePackageSafe = 0x05,
|
||||||
|
NcmContentMetaType_Application = 0x80,
|
||||||
|
NcmContentMetaType_Patch = 0x81,
|
||||||
|
NcmContentMetaType_AddOnContent = 0x82,
|
||||||
|
NcmContentMetaType_Delta = 0x83,
|
||||||
|
} NcmContentMetaType;
|
||||||
|
|
||||||
|
typedef enum {
|
||||||
|
NcmContentMetaAttribute_Exfat = (1 << 0),
|
||||||
|
NcmContentMetaAttribute_Rebootless = (1 << 1),
|
||||||
|
} NcmContentMetaAttribute;
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
Service s;
|
Service s;
|
||||||
} NcmContentStorage;
|
} NcmContentStorage;
|
||||||
|
Loading…
Reference in New Issue
Block a user