Initial commit

This commit is contained in:
Hector Martin
2016-11-23 14:35:12 +09:00
commit 5b1c4f85b6
296 changed files with 39925 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
#ifndef _PLAYTIME_H_
#define _PLAYTIME_H_
#include <gctypes.h>
typedef union {
struct {
u32 checksum;
u16 name[0x28];
u32 _pad1;
u64 ticks_boot;
u64 ticks_last;
u32 title_id;
u32 _pad2[5];
};
struct {
u32 _checksum;
u32 data[0x1f];
};
} __attribute__((packed)) playtime_t;
void playtime_destroy(void);
#endif