mirror of https://github.com/zeldaret/tp.git
28 lines
423 B
C
28 lines
423 B
C
#ifndef OSPLAYRECORD_H
|
|
#define OSPLAYRECORD_H
|
|
|
|
#include <revolution/os.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct {
|
|
u32 checkSum;
|
|
u16 titleName[2][21];
|
|
OSTime playStartTime;
|
|
OSTime playTime;
|
|
char gameCode[4];
|
|
char companyCode[2];
|
|
char res[18];
|
|
} OSPlayRecord;
|
|
|
|
void __OSStartPlayRecord(void);
|
|
void __OSStopPlayRecord(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // OSPLAYRECORD_H
|