Add mii_details
This commit is contained in:
parent
0139890679
commit
29026a75ef
@ -5,7 +5,7 @@
|
|||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
u8 magic;
|
u8 magic;
|
||||||
|
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
bool allow_copying : 1;
|
bool allow_copying : 1;
|
||||||
@ -13,44 +13,52 @@ typedef struct
|
|||||||
u8 region_lock : 2;
|
u8 region_lock : 2;
|
||||||
u8 char_set : 2;
|
u8 char_set : 2;
|
||||||
} mii_options;
|
} mii_options;
|
||||||
|
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
u8 page_index : 4;
|
u8 page_index : 4;
|
||||||
u8 slot_index : 4;
|
u8 slot_index : 4;
|
||||||
} mii_pos;
|
} mii_pos;
|
||||||
|
|
||||||
u8 console_identity;
|
u8 console_identity;
|
||||||
u64 system_id;
|
u64 system_id;
|
||||||
u32 mii_id;
|
u32 mii_id;
|
||||||
u8 mac[6];
|
u8 mac[6];
|
||||||
u8 pad[2];
|
u8 pad[2];
|
||||||
u16 mii_details;
|
|
||||||
|
struct {
|
||||||
|
u16 sex : 1;
|
||||||
|
u16 month : 4;
|
||||||
|
u16 day : 5;
|
||||||
|
u16 color : 4;
|
||||||
|
u16 favorite : 1;
|
||||||
|
} mii_details;
|
||||||
|
|
||||||
u16 mii_name[10];
|
u16 mii_name[10];
|
||||||
u8 height;
|
u8 height;
|
||||||
u8 width;
|
u8 width;
|
||||||
|
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
bool disable_sharing : 1;
|
bool disable_sharing : 1;
|
||||||
u8 shape : 4;
|
u8 shape : 4;
|
||||||
u8 skinColor : 3;
|
u8 skinColor : 3;
|
||||||
} face_style;
|
} face_style;
|
||||||
|
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
u8 wrinkles : 4;
|
u8 wrinkles : 4;
|
||||||
u8 makeup : 4;
|
u8 makeup : 4;
|
||||||
} face_details;
|
} face_details;
|
||||||
|
|
||||||
u8 hair_style;
|
u8 hair_style;
|
||||||
|
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
u8 color : 3;
|
u8 color : 3;
|
||||||
bool flip : 1;
|
bool flip : 1;
|
||||||
} hair_details;
|
} hair_details;
|
||||||
|
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
u32 style : 6;
|
u32 style : 6;
|
||||||
@ -61,7 +69,7 @@ typedef struct
|
|||||||
u32 xspacing : 4;
|
u32 xspacing : 4;
|
||||||
u32 yposition : 5;
|
u32 yposition : 5;
|
||||||
} eye_details;
|
} eye_details;
|
||||||
|
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
u32 style : 6;
|
u32 style : 6;
|
||||||
@ -72,7 +80,7 @@ typedef struct
|
|||||||
u32 xspacing : 4;
|
u32 xspacing : 4;
|
||||||
u32 yposition : 5;
|
u32 yposition : 5;
|
||||||
} eyebrow_details;
|
} eyebrow_details;
|
||||||
|
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
u16 style : 5;
|
u16 style : 5;
|
||||||
@ -94,7 +102,7 @@ typedef struct
|
|||||||
u16 mustach_style : 3;
|
u16 mustach_style : 3;
|
||||||
u16 pad : 2;
|
u16 pad : 2;
|
||||||
} mustache_details;
|
} mustache_details;
|
||||||
|
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
u16 style : 3;
|
u16 style : 3;
|
||||||
|
Loading…
Reference in New Issue
Block a user