mirror of
https://github.com/pret/pmd-sky.git
synced 2026-08-05 10:46:00 -05:00
29 lines
551 B
C
29 lines
551 B
C
#ifndef NITRO_OS_OWNERINFO_H_
|
|
#define NITRO_OS_OWNERINFO_H_
|
|
|
|
#include <nitro/types.h>
|
|
|
|
typedef struct OSBirthday {
|
|
u8 month;
|
|
u8 day;
|
|
} OSBirthday;
|
|
|
|
typedef struct OSOwnerInfo {
|
|
u8 language;
|
|
u8 favoriteColor;
|
|
OSBirthday birthday;
|
|
u16 nickName[11];
|
|
u16 nickNameLength;
|
|
u16 comment[27];
|
|
u16 commentLength;
|
|
} OSOwnerInfo;
|
|
|
|
void OS_GetMacAddress(u8 *macAddr);
|
|
|
|
//void OS_GetOwnerInfo(OSOwnerInfo *info);
|
|
void GetDsFirmwareUserSettings(OSOwnerInfo *info);
|
|
|
|
s64 OS_GetOwnerRtcOffset(void);
|
|
|
|
#endif //NITRO_OS_OWNERINFO_H_
|