MBUserInfo


C Specification

#include <nitro/mb.h>

typedef	struct
{
    u8   favoriteColor   : 4;
    u8   playerNo        : 4;
    u8   nameLength;
    u16  name[ MB_USER_NAME_LENGTH];
} MBUserInfo;	/* 22byte */

Description

This structure defines the style of user data used in the multi-boot process of both parent and child.

Members

The meaning of each member is as follows.

See Also

MB_Init

Revision History

11/02/2004 Matched the structure definition to the header file, added to the name description.
08/09/2004 Initial version.