#include <nitro/os.h>
typedef struct OSOwnerInfo
{
u8 language;
u8 favoriteColor;
struct {
u8 month;
u8 day;
} birthday;
u16 nickName[ 11 ];
u16 nickNameLength;
u16 comment[ 27 ];
u16 commentLength;
} OSOwnerInfo;
language | Language code. The following values are valid. (This code may be expanded in the future.) | ||
OS_LANGUAGE_JAPANESE | Japanese | ||
OS_LANGUAGE_ENGLISH | English | ||
OS_LANGUAGE_FRENCH | French | ||
OS_LANGUAGE_GERMAN | German | ||
OS_LANGUAGE_ITALIAN | Italian | ||
OS_LANGUAGE_SPANISH | Spanish | ||
OS_LANGUAGE_CHINESE | Chinese | ||
OS_LANGUAGE_HANGUL | Korean | ||
Other | Reserved | ||
favoriteColor | Displays the user's favorite color. The value range is 0 through 15. | ||
birthday | Displays a birthday. This structure consists of the following members: | ||
month | Month: The value range is 1 through 12. | ||
day | Day: The value range is 1 through 31. | ||
nickName | Character string that represents a nickname. Character format is Unicode (UTF16); the NULL terminator is included. | ||
nickNameLength | Number of characters in the nickname. | ||
comment | Character string that represents a user comment. Character format is Unicode (UTF16); the NULL terminator is included. | ||
commentLength | Number of characters in the user comment. |
This structure is for owner information input by the end user that is stored in a Nintendo DS system.
01/16/2007 Changed description of nickName and comment members
12/06/2006 Added extended language codes
09/03/2004 Initial version
CONFIDENTIAL