mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-07-29 23:27:25 -04:00
139722c731
* begin revolution sdk setup * wii rvl test * revo OS mostly done for shieldD
20 lines
354 B
C
20 lines
354 B
C
#ifndef OSPLAYRECORD_H
|
|
#define OSPLAYRECORD_H
|
|
|
|
#include <revolution/os.h>
|
|
|
|
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);
|
|
|
|
#endif // OSPLAYRECORD_H
|