mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-07-27 14:39:20 -04:00
353721578d
* shieldD revo dvd mostly done * shieldD revo nand mostly done * shieldD revo fs mostly done * shieldD revo ipc mostly done * shieldD revo sdk pad done
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
|